加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 569 Bytes
一键复制 编辑 原始数据 按行查看 历史
鱼无盐 提交于 2020-05-19 09:00 . revert: 移除分析插件
const TerserPlugin = require("terser-webpack-plugin");
module.exports = {
transpileDependencies: ["vuetify"],
pwa: {
name: "南哪指南",
themeColor: "#5b145c",
workboxOptions: {
skipWaiting: true
}
},
configureWebpack: {
optimization: {
minimizer: [
new TerserPlugin({
terserOptions: {
warnings: false,
compress: {
drop_console: true,
drop_debugger: true,
pure_funcs: ["console.log"]
}
}
})
]
}
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化