| 12345678910111213141516171819 |
- module.exports = {
- lintOnSave: false,
- devServer: {
- proxy: {
- '/api': {
- target: 'http://192.168.0.3:19095/',
- changeOrigin: true,
- pathRewrite: {
- '^/api': '',
- }
- }
- }
- },
- // 输出文件目录
- outputDir: 'D:/wwwroot/flyLongApp/build',
- // outputDir: 'D:/wwwroot/wifiDig/muse/electron/static_mobile',
- // publicPath : './',
- }
|