代码拉取完成,页面将自动刷新
module.exports = {
// 项目打包生成目录
outputDir: "/usr/local/Cellar/tomcat/9.0.41/libexec/webapps/chat-system/",
// 静态资源生成目录(相对于outputDir
assetsDir: "static",
// 关闭线上源码
productionSourceMap: false,
// css相关配置
// 图片在10kb以内使用内联base64图片
chainWebpack: config => {
config.module
.rule("images")
.use("url-loader")
.loader("url-loader")
.tap(options => Object.assign(options, { limit: 10240 }));
},
// 部署应用包时的基本 URL(解决build打包后资源文件404问题) :https://cli.vuejs.org/zh/config/#baseurl
publicPath: "./",
devServer: {
open: true,
compress: true,
port: 8020,
https: false,
hotOnly: false,
proxy: null
},
// 关闭生产环境console
configureWebpack(config) {
if (process.env.NODE_ENV === "production") {
// eslint-disable-next-line @typescript-eslint/camelcase
config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true;
}
}
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。