加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 599 Bytes
一键复制 编辑 原始数据 按行查看 历史
daslwb 提交于 2024-05-06 18:00 . 完善功能
module.exports = {
publicPath: "/",
outputDir: "dist",
assetsDir: "assets",
lintOnSave: false,
runtimeCompiler: false,
productionSourceMap: true,
devServer: {
open: true,
host: '0.0.0.0',
port: 7284,
//proxy:"https://localhost:7283/"
proxy:"http://localhost:5167/"
},
configureWebpack:{
module: {
rules: [
{
test: /\.mjs$/,
include: /node_modules/,
type: "javascript/auto"
},
]
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化