1234567891011121314151617181920212223242526 |
- const {
- defineConfig
- } = require('@vue/cli-service')
- module.exports = defineConfig({
- transpileDependencies: true,
- devServer: {
- client: {
- overlay: false
- },
- port: 8080,
- proxy: {
- '/action': {
- target: 'http://localhost:9999',
- changeOrigin: true,
- pathRewrite: {
- '^/action': ''
- },
- secure: false
- }
- }
- }
- })
|