Spaces:
Sleeping
Sleeping
| import { defineConfig } from 'vite' | |
| import vue from '@vitejs/plugin-vue' | |
| export default defineConfig({ | |
| plugins: [vue()], | |
| define: { | |
| ASSETS_PATH: `'/'`, // WC3 assets served from root of static dir | |
| }, | |
| server: { | |
| port: 5173, | |
| proxy: { | |
| '/api': { | |
| target: 'http://localhost:7860', | |
| changeOrigin: true, | |
| }, | |
| }, | |
| }, | |
| build: { | |
| outDir: 'dist', | |
| emptyOutDir: true, | |
| }, | |
| }) | |