Add frontend/vite.config.js

This commit is contained in:
2026-06-09 23:34:36 +00:00
parent 8aa4cfc140
commit acd25ca0a4
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
port: 5173,
proxy: {
'/api': {
target: 'http://localhost:8000',
changeOrigin: true
}
}
}
})