Spaces:
Paused
Paused
| import { defineConfig } from 'vite' | |
| import vue from '@vitejs/plugin-vue' | |
| import path from 'path' | |
| export default defineConfig({ | |
| plugins: [vue()], | |
| build: { | |
| outDir: path.resolve(__dirname, '../src/autoteam/web/dist'), | |
| emptyOutDir: true, | |
| }, | |
| server: { | |
| port: 5173, | |
| proxy: { | |
| '/api': { | |
| target: 'http://localhost:8787', | |
| changeOrigin: true, | |
| }, | |
| }, | |
| }, | |
| }) | |