Update vite.config.js
Browse files- vite.config.js +4 -1
vite.config.js
CHANGED
|
@@ -3,5 +3,8 @@ import react from '@vitejs/plugin-react'
|
|
| 3 |
|
| 4 |
export default defineConfig({
|
| 5 |
plugins: [react()],
|
| 6 |
-
base: './',
|
|
|
|
|
|
|
|
|
|
| 7 |
})
|
|
|
|
| 3 |
|
| 4 |
export default defineConfig({
|
| 5 |
plugins: [react()],
|
| 6 |
+
base: './',
|
| 7 |
+
build: {
|
| 8 |
+
outDir: 'build', // Add this line to match Hugging Face's expectations
|
| 9 |
+
}
|
| 10 |
})
|