auto-sync: 2026-05-17 06:14:22

This commit is contained in:
cfdaily
2026-05-17 06:14:22 +08:00
parent 7a669de900
commit 841402005c
2 changed files with 27 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 8083,
proxy: {
'/api': 'http://localhost:8080',
},
},
build: {
outDir: 'dist',
},
});