1 Star 0 Fork 5

姜世存/vue-mxGraph

forked from SaluteH/vue-mxGraph 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 3.92 KB
一键复制 编辑 原始数据 按行查看 历史
HMH 提交于 2023-11-27 16:14 . author:HMH
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('')) 自己添加
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jiangshicun/vue-mxGraph.git
[email protected]:jiangshicun/vue-mxGraph.git
jiangshicun
vue-mxGraph
vue-mxGraph
master

搜索帮助