FlameF0X commited on
Commit
c29dbaa
·
verified ·
1 Parent(s): 20f5a6e

Create vite.config.js

Browse files
Files changed (1) hide show
  1. vite.config.js +7 -0
vite.config.js ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import { defineConfig } from 'vite'
2
+ import react from '@vitejs/plugin-react'
3
+
4
+ export default defineConfig({
5
+ plugins: [react()],
6
+ base: './', // Critical for Hugging Face Spaces paths
7
+ })