| 123456789101112131415161718 |
- import { defineConfig } from 'vite'
- import vue from '@vitejs/plugin-vue'
- export default defineConfig({
- plugins: [vue()],
- server: {
- host: '0.0.0.0',
- port: 5173,
- strictPort: true,
- allowedHosts: true,
- proxy: {
- '/api': {
- target: 'http://127.0.0.1:8080',
- changeOrigin: true,
- },
- },
- },
- })
|