代码拉取完成,页面将自动刷新
同步操作将从 SaluteH/vue-mxGraph 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
const path = require('path');
function resolve (dir) {
return path.join(__dirname, dir);
}
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
// const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
// const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
// const CompressionWebpackPlugin = require('compression-webpack-plugin');
// const ProgressBarPlugin = require('progress-bar-webpack-plugin');
// const productionGzipExtensions = ['js', 'css', 'html']
module.exports = {
publicPath: process.env.NODE_ENV === 'production'
? '/Mxgraph-EasyFlowEditor/'
: '/',
outputDir: 'dist',
lintOnSave: true,
configureWebpack: {
plugins: [
// new ProgressBarPlugin(),
// new BundleAnalyzerPlugin(),
// new CompressionWebpackPlugin({
// filename: '[path].gz[query]',
// algorithm: 'gzip',
// test: new RegExp('\\.(' + productionGzipExtensions.join('|') + ')$',),
// threshold: 10240,//仅处理大于此大小的资产。以字节为单位。
// minRatio: 0.8,
// }),
],
optimization: {
// splitChunks: {
// chunks: "all",
// cacheGroups: {
// common: {
// name: 'chunk-common',
// test: /[\\/]node_modules[\\/]/,
// priority: 10,
// minChunks: 1,
// chunks: 'all',
// },
// elementUI: {
// name: "chunk-element-ui", // 单独将 elementUI 拆包
// priority: 20, // 权重要大于 libs 和 app 不然会被打包进 libs 或者 app
// test: /[\\/]node_modules[\\/]element-ui[\\/]/,
// },
// mxgraph: {
// name: "chunk-mxgraph", // 单独将 elementUI 拆包
// priority: 20, // 权重要大于 libs 和 app 不然会被打包进 libs 或者 app
// test: /[\\/]node_modules[\\/]mxgraph[\\/]/,
// },
// component: {
// name: 'chunk-componentaa',
// test: /[\\/]src[\\/]/,
// priority: 50,
// minChunks: 1,
// chunks: 'all',
// },
// }
// },
// minimizer: [
// new UglifyJsPlugin(
// {
// uglifyOptions: {
// compress: {
// reduce_vars: true,// 把使用多次的静态值自动定义为变量
// drop_debugger: true,// 删除所有的debugger语句
// drop_console: true,// 删除所有的console语句
// },
// parallel: true, // 允许并发
// cache: true, // 开启缓存
// output: {
// beautify: false // 使输出的代码尽可能紧凑
// }
// },
// }
// ),
// new CssMinimizerPlugin({
// parallel: true,// 多并发执行
// minimizerOptions: {
// preset: [
// "default",
// {
// discardComments: { removeAll: true },//移除所有注释
// },
// ],
// },
// })],
},
},
chainWebpack: (config) => {
config.module
.rule('')
.test(/mxClient\.js$/)
.use('exports-loader')
.loader('exports-loader?mxClient,mxToolbar,mxConnectionHandler,mxEllipse,mxConnectionConstraint,mxWindow,' +
'mxObjectCodec,mxGraphModel,mxActor,mxPopupMenu,mxShape,mxEventObject,mxGraph,mxPopupMenuHandler,mxPrintPreview,' +
'mxEventSource,mxRectangle,mxVertexHandler,mxMouseEvent,mxGraphView,mxCodecRegistry,mxImage,mxGeometry,' +
'mxRubberband,mxConstraintHandler,mxKeyHandler,mxDragSource,mxGraphModel,mxEvent,mxUtils,mxEvent,mxCodec,mxCell,' +
'mxConstants,mxPoint,mxGraphHandler,mxCylinder,mxCellRenderer,mxEvent,mxUndoManager')
.end();
config.resolve.alias
.set('@', resolve('src'))
.set('@assets', resolve('src/assets'));
// 按这种格式.set('', resolve('')) 自己添加
},
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。