wolf-of-nyc / vite.config.js
yetog's picture
Upload 21 files
f7892e5 verified
raw
history blame contribute delete
225 Bytes
import { defineConfig } from 'vite'
export default defineConfig({
// Minimal Vite config for compatibility
// The actual app runs on Python Gradio
build: {
outDir: 'dist',
},
server: {
port: 3000,
},
})