Athipan01 commited on
Commit
ab4b108
·
verified ·
1 Parent(s): f459383

Create vite.config.ts

Browse files
Files changed (1) hide show
  1. vite.config.ts +8 -0
vite.config.ts ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import { defineConfig } from 'vite'
2
+ import react from '@vitejs/plugin-react'
3
+
4
+ // ต้องใช้ base: "./" เวลา deploy ไป HuggingFace
5
+ export default defineConfig({
6
+ plugins: [react()],
7
+ base: "./"
8
+ })