Create vite.config.js

#3
by hotboxxgenn - opened
Files changed (1) hide show
  1. vite.config.js +8 -0
vite.config.js ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import { defineConfig } from 'vite'
2
+ import react from '@vitejs/plugin-react'
3
+
4
+ // https://vitejs.dev/config/
5
+ export default defineConfig({
6
+ plugins: [react()],
7
+ base: './', // important for static deployment
8
+ })