Shinhati2023 commited on
Commit
ccff4d9
·
verified ·
1 Parent(s): 6f1c56b

Create vite.config.js

Browse files
Files changed (1) hide show
  1. vite.config.js +9 -0
vite.config.js ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import { defineConfig } from 'vite'
2
+ import react from '@vitejs/plugin-react'
3
+
4
+ export default defineConfig({
5
+ plugins: [react()],
6
+ server: {
7
+ port: 7860, // Local dev port
8
+ }
9
+ })