word/vite.config.js

31 lines
620 B
JavaScript
Raw Normal View History

2024-06-27 16:23:31 +08:00
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server: {
proxy: {
// 在此处编写代理规则
'/api': {
secure: false,
2024-07-09 15:03:32 +08:00
target: 'https://test.yqt.com',
//target: 'https://c.apxly.com',
2024-06-27 16:23:31 +08:00
changeOrigin: true,
rewrite: (path) => {
return path.replace(/\/api/, '')
}
}
}
}
})