123456789101112131415161718192021222324252627 |
- module.exports = {
- // publicPath: '/child_pc/',
- publicPath: '/manage/',
- assetsDir:"static",
- outputDir: 'manage',
- indexPath:"index.html",
- filenameHashing:"true",
- productionSourceMap: false,
- lintOnSave: false,
- devServer: {
- port: 8085, // 端口号
- hot:true,
- disableHostCheck:true,//热更新不生效 可以打开此属性
- // https: false, // https:{type:Boolean}
- open: true, //配置自动启动浏览器
- proxy: {
- '/pdf': {
- target: 'http://10.113.248.3:8086',
- // ws: true,
- changeOrigin: true,
- pathRewrite: {
- '^/pdf': '/pdf' //代理的路径
- }
- },
- }
- },
- }
|