| 12345678910111213141516171819 |
- import { defineConfig } from 'vite'
- import vue from '@vitejs/plugin-vue'
- // https://vitejs.dev/config/
- export default defineConfig({
- plugins: [vue()],
- server: {
- port: 9666,
- host: '0.0.0.0',
- open: true,
- proxy: {
- '/api': {
- target: 'http://localhost:9777',
- changeOrigin: true,
- rewrite: (path) => path.replace(/^\/api/, '')
- }
- }
- }
- })
|