加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
七月十二 提交于 2021-04-01 15:39 . 04-01 修改
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin')
const minify = {
collapseWhitespace: true,
removeComments: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
useShortDoctype: true,
minifyCSS: true,
minifyJS: true
}
module.exports = {
// 允许运行时编译
publicPath: '/table-generator/',
runtimeCompiler: true,
pages: {
index: {
entry: 'src/main.js',
template: 'public/index.html',
filename: 'index.html',
chunks: ['chunk-vendors', 'chunk-common', 'index'],
minify
},
preview: {
entry: 'src/views/preview/main.js',
template: 'public/preview.html',
filename: 'preview.html',
chunks: ['chunk-vendors', 'chunk-common', 'preview'],
minify
}
},
configureWebpack: {
// 引入代码编辑相关插件
plugins: [new MonacoWebpackPlugin()]
},
chainWebpack: config => {
const svgRule = config.module.rule('svg')
svgRule.uses.clear()
svgRule
.test(/\.svg$/)
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化