| 123456789101112131415161718 |
- module.exports = {
- lintOnSave: false,
- devServer: {
- open: true,
- proxy: {
- '/api': {
- target: 'http://192.168.0.3:19082/',
- // target: 'http://192.168.0.165:19082/',
- changeOrigin: true,
- pathRewrite: {
- '^/api': '',
- }
- }
- }
- },
- // 输出文件目录
- outputDir: 'D:/wwwroot/signal_build/build/static',
- };
|