12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- const { defineConfig } = require('@vue/cli-service')
- module.exports = defineConfig({
- transpileDependencies: true,
- publicPath:'./',
-
-
-
-
-
-
-
-
-
-
-
-
-
- devServer: {
- open: true,
- host: 'localhost',
- port: 8080,
-
- proxy: {
- '/ResourcesCenter': {
- target: 'http://localhost:8084/',
- ws:true,
- changeOrigin:true,
- secure: true,
- pathRewrite:{
- '^/ResourcesCenter':''
- },
- headers: {
- referer: 'http://localhost:8084/',
- }
- }
- }
- }
- })
|