12345678910111213141516171819202122232425262728 |
- module.exports = {
- publicPath: './',
- devServer: {
- port: 8080,
- proxy: {
- '/api': {
- // target: 'http://192.168.0.11:8566',
- target: 'http://localhost:8080',
- changeOrigin: true,
- // pathRewrite: {
- // '^/api': '/'
- // },
- },
- // '/api/websocket': {
- // target: 'ws://localhost:8080',
- // changeOrigin: true,
- // ws: true,
- // pathRewrite: {
- // '^/api': '/'
- // },
- // },
- }
- },
- transpileDependencies: [
- 'vue-echarts',
- 'resize-detector'
- ]
- }
|