1234567891011121314151617181920212223242526 |
- module.exports = {
- publicPath: './',
- devServer: {
- proxy: {
- '/api': {
- 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'
- ]
- }
|