add flutter quiz project code

This commit is contained in:
吴璨
2026-08-04 18:07:40 +08:00
parent 14a28cccc6
commit 22b5d75d2d
22 changed files with 6416 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
root: 'web',
plugins: [vue()],
build: {
outDir: '../dist',
emptyOutDir: true
},
server: {
port: 5173,
proxy: {
'/api': 'http://localhost:3030'
}
}
})