clip-tagger / vite.config.js
sohei1l's picture
Fix asset paths for Hugging Face Spaces deployment
5a31167
raw
history blame contribute delete
270 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
base: './', // Use relative paths for HF Spaces
build: {
outDir: 'dist',
assetsDir: 'assets'
}
})