12345678910111213141516171819 |
- module.exports = {
- publicPath: './',
- productionSourceMap: false,
- devServer: {
- host: 'localhost',
- open: true,
- proxy: {
- '/api': {
- target: 'http://jiesuan.platomix.net/api',
- // target: 'https://channel.mige.tv/api',
- // target: 'https://opao.bol.wo.cn/channel/api',
- changeOrigin: true,
- pathRewrite: {
- '^/api': ''
- }
- }
- },
- },
- }
|