7 Star 53 Fork 13

朱平齐/RuiJi.Scraper

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 3.27 KB
一键复制 编辑 原始数据 按行查看 历史
朱平齐 提交于 2020-08-24 11:57 . 添加项目文件。
var webpack = require('webpack');
var MangleJsClassPlugin = require('mangle-js-webpack-plugin');
var ZipPlugin = require('./src/zip.js');
module.exports = {
filenameHashing: false,
productionSourceMap: false,
lintOnSave: false,
pages: {
content: {
entry: 'src/content.ts',
filename: 'content.html'
},
background: {
entry: 'src/background.ts',
filename: 'background.html'
},
popup: {
entry: 'src/popup.ts',
filename: 'popup.html'
},
login: {
entry: 'src/login.ts',
filename: 'login.html'
},
settings: {
entry: 'src/settings.ts',
filename: 'settings.html'
},
worksheet: {
entry: 'src/worksheet.ts',
filename: 'worksheet.html'
},
register: {
entry: 'src/register.ts',
filename: 'register.html'
},
forget: {
entry: 'src/forget.ts',
filename: 'forget.html'
}
},
css: {
extract: true,
sourceMap: false,
loaderOptions: {},
modules: false
},
configureWebpack: {
optimization: {
//splitChunks: {
// chunks: 'all',
// //minSize: 30000,
// minChunks: 10,
// //maxAsyncRequests: 5,
// //maxInitialRequests: 3,
// //automaticNameDelimiter: '~',
// //name: true,
// //cacheGroups: {
// // jquery: {
// // name: `chunk-jquery`,
// // test: /[\\/]node_modules[\\/].*?jquery.*?/,
// // priority: -5,
// // chunks: 'initial'
// // },
// // vendors: {
// // name: `chunk-vendors`,
// // test: /[\\/]node_modules[\\/]/,
// // priority: -10,
// // chunks: 'initial'
// // },
// // utils: {
// // name: `chunk-utils`,
// // test: /.*src[\\/]core[\\/]message.*/,
// // priority: -15,
// // chunks: 'initial'
// // },
// // common: {
// // name: `chunk-common`,
// // priority: -20,
// // chunks: 'initial',
// // reuseExistingChunk: false
// // }
// //}
//}
splitChunks: false
},
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
})
//, new MangleJsClassPlugin({ //调试注释该部分
// exclude: /chunk-vendors.*/,
// algorithm: 'obfuscator' // 'obfuscator' || 'jjencode' || 'aaencode'
//})
//,new ZipPlugin({
// chrome: ["applications"]
//})
//new BundleAnalyzerPlugin()
]
}
,chainWebpack(webpackConfig) { //调试打开该部分
webpackConfig.optimization.minimize(false);
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/zhupingqi/RuiJi.Scraper.git
git@gitee.com:zhupingqi/RuiJi.Scraper.git
zhupingqi
RuiJi.Scraper
RuiJi.Scraper
master

搜索帮助