加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
18019465682 提交于 2021-02-12 12:04 . update
const path = require("path");
module.exports = {
// publicPath:
// process.env.NODE_ENV === "production" ? "/metronic/vue/demo2/" : "/",
configureWebpack: {
resolve: {
alias: {
// If using the runtime only build
vue$: "vue/dist/vue.runtime.esm.js" // 'vue/dist/vue.runtime.common.js' for webpack 1
// Or if using full build of Vue (runtime + compiler)
// vue$: 'vue/dist/vue.esm.js' // 'vue/dist/vue.common.js' for webpack 1
}
}
},
chainWebpack: config => {
config.module
.rule("eslint")
.use("eslint-loader")
.tap(options => {
options.configFile = path.resolve(__dirname, ".eslintrc.js");
return options;
});
},
productionSourceMap: true,
devServer: {
proxy: {
'/api': {
target: 'https://macro.ink',
// target:"http://localhost:8001",
changeOrigin: true,
pathRewrite: {
'/api': ''
},
},
}
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化