2 Star 8 Fork 12

Git游戏/Vue放置(vue-idle-game)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 538 Bytes
一键复制 编辑 原始数据 按行查看 历史
couy 提交于 2020-12-02 09:55 +08:00 . 添加gzip,压缩文件体积试图加快访问速度
const CompressionPlugin = require("compression-webpack-plugin")
module.exports = {
// 选项...
publicPath: '',
productionSourceMap: false,
configureWebpack: config => {
if (process.env.NODE_ENV === 'production') {
return {
plugins: [
new CompressionPlugin({
test: /\.js$|\.html$|.\css/, //匹配文件名
threshold: 1024, //对超过10k的数据压缩
deleteOriginalAssets: false //是否删除源文件
})
]
}
}
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/idlegame/vue-idle-game.git
git@gitee.com:idlegame/vue-idle-game.git
idlegame
vue-idle-game
Vue放置(vue-idle-game)
master

搜索帮助