123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- const CompressionPlugin = require("compression-webpack-plugin");
- const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
- module.exports = {
- devServer: {
- open: true,
- proxy: {
- "/labsl": {
- target: "http://60.205.177.43:8080",
- changeOrigin: true,
- secure: false,
- },
- "/meiku": {
- target: "http://60.205.177.43:8080",
- changeOrigin: true,
- secure: false,
- },
- "/datacenter": {
- target: "http://60.205.177.43:8080",
- changeOrigin: true,
- secure: false,
- },
- "/equip-component": {
- target: "http://60.205.177.43:8080",
- changeOrigin: true,
- secure: false,
- },
-
- "/image-service": {
- target: "http://api.sagacloud.cn",
- changeOrigin: true,
- secure: false,
- pathRewrite: {
- "^/image-service": "/dp-auxiliary/image-service/",
- },
- },
- },
-
- overlay: {
- warnings: false,
- errors: false,
- },
- },
- chainWebpack: (config) => {
- config.output.filename("static/js/[name].[hash].js").end();
- config.output.chunkFilename("static/js/[name].[hash].js").end();
- },
- lintOnSave: false,
- publicPath: "/persagyPlan",
-
- outputDir: "persagyPlan",
-
- assetsDir: "static",
- transpileDependencies: [
- "@persagy-web",
- ],
- productionSourceMap: false,
-
- css: {
-
- extract: true,
- },
-
- configureWebpack: (config) => {
-
- if (process.env.VUE_Plan_RealEnv === "production") {
- config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true;
- config.optimization.minimizer[0].options.terserOptions.compress.drop_debugger = true;
- config.optimization.minimizer[0].options.terserOptions.compress.pure_funcs = ["console.log"];
- }
- const plugins = [
-
- new CompressionPlugin({
- test: /\.js$|\.html$|\.css$/,
- threshold: 10240,
- deleteOriginalAssets: process.env.NODE_ENV === "production",
- }),
- ];
-
- if (process.env.NODE_ENV === "production" && (process.env.npm_config_report || process.env.npm_config_argv.indexOf("--report") !== -1)) {
- plugins.push(new BundleAnalyzerPlugin());
- }
- return {
- plugins,
- };
- },
-
-
-
-
-
- };
|