Spaces:
Sleeping
Sleeping
File size: 225 Bytes
f7892e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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,
},
})
|