加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 964 Bytes
一键复制 编辑 原始数据 按行查看 历史
asBob 提交于 2023-02-09 14:32 . 初始化
const fs = require('fs')
const path = require('path')
const webpack = require('webpack')
module.exports = {
configureWebpack: {
plugins: [
new webpack.ProvidePlugin({
'Vue': ['vue', 'default'],
'G': [path.resolve(path.join(__dirname, 'G')), 'default'],
}),
new webpack.ProgressPlugin(percentage => {
percentage === 1 ? console.log('编译完成:100.00%') : console.log(`编译进度:${(percentage * 100).toFixed(2)}%`)
})
]
},
chainWebpack: config => {
config.module.rule('vue').use('vue-loader').loader('vue-loader').tap(options => {
const compile = options.compiler.compile
options.compiler.compile = (template, ...args) => {
if (args[0].resourcePath.match(/^pages/)) {
template = template.replace(/[\s\S]+?<[\d\D]+?>/, _ => `${_}
<custom-interactive ref="custom-interactive" style="position: fixed; z-index: 123;" />
`)
}
return compile(template, ...args)
}
return options
})
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化