Upload vite.config.js with huggingface_hub
Browse files- vite.config.js +10 -0
vite.config.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import { defineConfig } from 'vite'
|
| 2 |
+
import react from '@vitejs/plugin-react'
|
| 3 |
+
|
| 4 |
+
export default defineConfig({
|
| 5 |
+
plugins: [react()],
|
| 6 |
+
base: './',
|
| 7 |
+
build: {
|
| 8 |
+
outDir: 'dist'
|
| 9 |
+
}
|
| 10 |
+
})
|