1234567891011121314151617181920212223242526 |
- const { defineConfig } = require('@vue/cli-service')
- module.exports = defineConfig({
- transpileDependencies: true,
- devServer: {
- port: 8080,
- proxy: {
- '/proxy_proxy/': {
- target: 'http://121.43.55.7:10011/proxy',
- // target: 'http://127.0.0.1:10093',
- changeOrigin: true,
- secure: false,
- pathRewrite: {
- '^/proxy_proxy': ''
- }
- },
- '/oauth/': {
- target: 'http://121.43.55.7:10086/oauth',
- changeOrigin: true,
- pathRewrite: {
- '^/oauth': ''
- }
- },
- }
- }
- })
|