初始提交: 配置管理面板 (Vite 8 + Svelte 5 + Bulma)

This commit is contained in:
hermes
2026-06-28 11:31:25 +00:00
commit 3ca80674a1
14 changed files with 1811 additions and 0 deletions

14
vite.config.js Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vite';
import { svelte } from '@sveltejs/vite-plugin-svelte';
export default defineConfig({
plugins: [svelte()],
server: {
proxy: {
'/config': {
target: 'http://localhost:3001',
changeOrigin: true,
},
},
},
});