1 Star 0 Fork 0

没有名字/Kyouka-button

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
没有名字 提交于 2022-04-08 20:12 . 框架更新
const path = require('path')
const Check = require('./plugins/check')
const Voives = require('./plugins/voices')
process.env.VUE_APP_LAST_UPDATE = Date.now()
/**
* @typedef { import("@vue/cli-service").ProjectOptions } Options
* @type { Options }
*/
module.exports = {
productionSourceMap: false,
css: {
loaderOptions: {
stylus: {
stylusOptions: {
import: [path.join(__dirname, './setting/color.styl')]
}
}
}
},
configureWebpack: () => {
return {
plugins: [
new Check(),
new Voives()
],
performance: {
hints: false
},
optimization: {
splitChunks: {
chunks: 'all',
cacheGroups: {
libs: {
name: 'chunk-libs',
test: /[\\/]node_modules[\\/]/,
priority: 10,
chunks: 'initial' // 只打包初始时依赖的第三方
},
corejs: {
name: 'chunk-corejs', // 单独将 core-js 拆包
priority: 15,
test: /[\\/]node_modules[\\/]core-js[\\/]/
}
}
}
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Deacnlt/Kyouka-button.git
git@gitee.com:Deacnlt/Kyouka-button.git
Deacnlt
Kyouka-button
Kyouka-button
main

搜索帮助