Spaces:
Running
Running
Create vite.config.js (#2)
Browse files- Create vite.config.js (0a8f9ed88c88f53824928e75b5876290ae94faf4)
- vite.config.js +12 -0
vite.config.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import { defineConfig } from 'vite'
|
| 2 |
+
import react from '@vitejs/plugin-react'
|
| 3 |
+
|
| 4 |
+
export default defineConfig({
|
| 5 |
+
plugins: [react()],
|
| 6 |
+
build: {
|
| 7 |
+
outDir: 'dist',
|
| 8 |
+
},
|
| 9 |
+
server: {
|
| 10 |
+
port: 3000,
|
| 11 |
+
}
|
| 12 |
+
})
|