2023-05-29 11:52:29 +08:00
|
|
|
const path = require("path");
|
|
|
|
const { name } = require("./package");
|
2023-06-14 15:19:43 +08:00
|
|
|
const { defineConfig } = require("@vue/cli-service");
|
2023-05-29 11:52:29 +08:00
|
|
|
const BundleAnalyzerPlugin =
|
|
|
|
require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
|
2022-10-10 13:41:39 +08:00
|
|
|
|
|
|
|
function resolve(dir) {
|
|
|
|
return path.join(__dirname, dir);
|
|
|
|
}
|
|
|
|
|
2023-06-14 15:19:43 +08:00
|
|
|
module.exports = defineConfig({
|
|
|
|
publicPath: "/",
|
2022-10-10 18:35:38 +08:00
|
|
|
productionSourceMap: false,
|
2022-10-10 13:41:39 +08:00
|
|
|
devServer: {
|
|
|
|
port: 4003,
|
|
|
|
client: {
|
2023-05-29 11:52:29 +08:00
|
|
|
webSocketTransport: "sockjs",
|
2023-07-02 12:14:54 +08:00
|
|
|
overlay: false,
|
2022-10-10 13:41:39 +08:00
|
|
|
},
|
2023-05-29 11:52:29 +08:00
|
|
|
allowedHosts: "all",
|
|
|
|
webSocketServer: "sockjs",
|
2022-10-10 13:41:39 +08:00
|
|
|
proxy: {
|
2023-05-29 11:52:29 +08:00
|
|
|
["^((?!/login)(?!/document))"]: {
|
|
|
|
target: "http://localhost:8003",
|
|
|
|
ws: false,
|
2022-10-10 13:41:39 +08:00
|
|
|
},
|
2023-05-29 11:52:29 +08:00
|
|
|
"/websocket": {
|
|
|
|
target: "http://localhost:8003",
|
|
|
|
ws: true,
|
2022-10-10 13:41:39 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
// 跨域
|
|
|
|
headers: {
|
2023-05-29 11:52:29 +08:00
|
|
|
"Access-Control-Allow-Origin": "*",
|
2022-10-10 13:41:39 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
pages: {
|
|
|
|
index: {
|
|
|
|
entry: "src/main.js",
|
|
|
|
template: "public/index.html",
|
2023-05-29 11:52:29 +08:00
|
|
|
filename: "index.html",
|
2022-10-10 13:41:39 +08:00
|
|
|
},
|
|
|
|
sharePerformanceReport: {
|
2023-05-29 11:52:29 +08:00
|
|
|
entry:
|
|
|
|
"src/template/report/performance/share/share-performance-report.js",
|
|
|
|
template:
|
|
|
|
"src/template/report/performance/share/share-performance-report.html",
|
2022-10-10 13:41:39 +08:00
|
|
|
filename: "share-performance-report.html",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
configureWebpack: {
|
2023-05-29 11:52:29 +08:00
|
|
|
devtool: "cheap-module-source-map",
|
2022-10-10 13:41:39 +08:00
|
|
|
resolve: {
|
|
|
|
alias: {
|
2023-05-29 11:52:29 +08:00
|
|
|
"@": resolve("src"),
|
2023-06-14 11:17:45 +08:00
|
|
|
html2canvas: resolve("node_modules/html2canvas"),
|
|
|
|
"vue-i18n": resolve("node_modules/vue-i18n"),
|
2022-10-10 13:41:39 +08:00
|
|
|
},
|
2023-05-29 11:52:29 +08:00
|
|
|
fallback: { stream: require.resolve("stream-browserify") },
|
2022-10-10 13:41:39 +08:00
|
|
|
},
|
|
|
|
output: {
|
|
|
|
// 把子应用打包成 umd 库格式(必须)
|
|
|
|
library: `${name}-[name]`,
|
2023-05-29 11:52:29 +08:00
|
|
|
libraryTarget: "umd",
|
2022-10-10 13:41:39 +08:00
|
|
|
chunkLoadingGlobal: `webpackJsonp_${name}`,
|
|
|
|
// 打包后js的名称
|
|
|
|
filename: `js/${name}-[name].[contenthash:8].js`,
|
|
|
|
chunkFilename: `js/${name}-[name].[contenthash:8].js`,
|
|
|
|
},
|
2023-05-29 11:52:29 +08:00
|
|
|
optimization: {
|
|
|
|
splitChunks: {
|
|
|
|
cacheGroups: {
|
|
|
|
"chunk-vendors": {
|
|
|
|
test: /[\\/]node_modules[\\/]/,
|
|
|
|
name: "chunk-vendors",
|
|
|
|
priority: 1,
|
|
|
|
minChunks: 3,
|
|
|
|
chunks: "all",
|
|
|
|
},
|
|
|
|
"chunk-common": {
|
|
|
|
test: /[\\/]src[\\/]/,
|
|
|
|
name: "chunk-common",
|
|
|
|
priority: 1,
|
|
|
|
minChunks: 5,
|
|
|
|
chunks: "all",
|
|
|
|
},
|
|
|
|
html2canvas: {
|
|
|
|
test: /[\\/]html2canvas[\\/]/,
|
|
|
|
name: "html2canvas",
|
2023-06-14 11:17:45 +08:00
|
|
|
priority: 3,
|
2023-05-29 11:52:29 +08:00
|
|
|
chunks: "all",
|
|
|
|
},
|
|
|
|
fortawesome: {
|
|
|
|
test: /[\\/]@fortawesome[\\/]/,
|
|
|
|
name: "fortawesome",
|
2023-06-14 11:17:45 +08:00
|
|
|
priority: 3,
|
2023-05-29 11:52:29 +08:00
|
|
|
chunks: "all",
|
|
|
|
},
|
|
|
|
"el-tree-transfer": {
|
|
|
|
test: /[\\/]el-tree-transfer[\\/]/,
|
|
|
|
name: "el-tree-transfer",
|
|
|
|
priority: 3,
|
|
|
|
chunks: "all",
|
|
|
|
},
|
|
|
|
jspdf: {
|
|
|
|
test: /[\\/]jspdf[\\/]/,
|
|
|
|
name: "jspdf",
|
2023-06-14 11:17:45 +08:00
|
|
|
priority: 3,
|
2023-05-29 11:52:29 +08:00
|
|
|
chunks: "all",
|
|
|
|
},
|
|
|
|
jsondiffpatch: {
|
|
|
|
test: /[\\/]jsondiffpatch[\\/]/,
|
|
|
|
name: "jsondiffpatch",
|
2023-06-14 11:17:45 +08:00
|
|
|
priority: 3,
|
2023-05-29 11:52:29 +08:00
|
|
|
chunks: "all",
|
|
|
|
},
|
|
|
|
jsencrypt: {
|
|
|
|
test: /[\\/]jsencrypt[\\/]/,
|
|
|
|
name: "jsencrypt",
|
2023-06-14 11:17:45 +08:00
|
|
|
priority: 3,
|
2023-05-29 11:52:29 +08:00
|
|
|
chunks: "all",
|
|
|
|
},
|
|
|
|
mockjs: {
|
|
|
|
test: /[\\/]mockjs[\\/]/,
|
|
|
|
name: "mockjs",
|
2023-06-14 11:17:45 +08:00
|
|
|
priority: 3,
|
|
|
|
chunks: "all",
|
|
|
|
},
|
|
|
|
pinia: {
|
|
|
|
test: /[\\/]pinia[\\/]/,
|
|
|
|
name: "pinia",
|
|
|
|
priority: 3,
|
|
|
|
chunks: "all",
|
|
|
|
},
|
|
|
|
brace: {
|
|
|
|
test: /[\\/]brace[\\/]/,
|
|
|
|
name: "brace",
|
|
|
|
priority: 3,
|
|
|
|
chunks: "all",
|
|
|
|
},
|
|
|
|
echarts: {
|
|
|
|
test: /[\\/](echarts|zrender)[\\/]/,
|
|
|
|
name: "echarts",
|
|
|
|
priority: 3,
|
2023-05-29 11:52:29 +08:00
|
|
|
chunks: "all",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-10-10 13:41:39 +08:00
|
|
|
},
|
|
|
|
css: {
|
|
|
|
// 将组件内的 CSS 提取到一个单独的 CSS 文件 (只用在生产环境中)
|
|
|
|
// 也可以是一个传递给 `extract-text-webpack-plugin` 的选项对象
|
|
|
|
// 修改打包后css文件名
|
|
|
|
// extract: true,
|
|
|
|
extract: {
|
|
|
|
ignoreOrder: true,
|
|
|
|
filename: `css/${name}-[name].[contenthash:8].css`,
|
2023-05-29 11:52:29 +08:00
|
|
|
chunkFilename: `css/${name}-[name].[contenthash:8].css`,
|
2022-10-10 13:41:39 +08:00
|
|
|
},
|
|
|
|
},
|
2023-05-29 11:52:29 +08:00
|
|
|
chainWebpack: (config) => {
|
2022-10-10 13:41:39 +08:00
|
|
|
config.module
|
2023-05-29 11:52:29 +08:00
|
|
|
.rule("svg")
|
|
|
|
.exclude.add(
|
|
|
|
resolve("../../framework/sdk-parent/frontend/src/assets/module")
|
|
|
|
)
|
|
|
|
.end();
|
2022-10-10 13:41:39 +08:00
|
|
|
config.module
|
2023-05-29 11:52:29 +08:00
|
|
|
.rule("icons")
|
2022-10-10 13:41:39 +08:00
|
|
|
.test(/\.svg$/)
|
2023-05-29 11:52:29 +08:00
|
|
|
.include.add(
|
|
|
|
resolve("../../framework/sdk-parent/frontend/src/assets/module")
|
|
|
|
)
|
2022-10-10 13:41:39 +08:00
|
|
|
.end()
|
2023-05-29 11:52:29 +08:00
|
|
|
.use("svg-sprite-loader")
|
|
|
|
.loader("svg-sprite-loader")
|
2022-10-10 13:41:39 +08:00
|
|
|
.options({
|
2023-05-29 11:52:29 +08:00
|
|
|
symbolId: "icon-[name]",
|
|
|
|
});
|
|
|
|
|
|
|
|
if (process.env.NODE_ENV === "analyze") {
|
|
|
|
config.plugin("webpack-report").use(BundleAnalyzerPlugin, [
|
|
|
|
{
|
|
|
|
analyzerMode: "static",
|
|
|
|
reportFilename: "./webpack-report.html",
|
|
|
|
openAnalyzer: false,
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
},
|
2023-06-14 15:19:43 +08:00
|
|
|
});
|