T01: add frontend vite.config.ts

This commit is contained in:
2026-06-21 20:31:20 +00:00
parent de3f5d5b29
commit 9836c95438
+17
View File
@@ -0,0 +1,17 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 8080,
strictPort: true,
host: true
},
preview: {
port: 8080,
strictPort: true,
host: true
}
})