wxyyxc1992 5 年 前
コミット
a49f5155c8
共有3 個のファイルを変更した3539 個の追加6 個の削除を含む
  1. 3533
    1
      dist/index.js
  2. 1
    1
      dist/index.js.map
  3. 5
    4
      scripts/base/webpack.config.prod.js

+ 3533
- 1
dist/index.js
ファイル差分が大きすぎるため省略します
ファイルの表示


+ 1
- 1
dist/index.js.map
ファイル差分が大きすぎるため省略します
ファイルの表示


+ 5
- 4
scripts/base/webpack.config.prod.js ファイルの表示

@@ -13,7 +13,8 @@ const { buildEnv } = baseConfig.extra;
13 13
 const config = {
14 14
   ...baseConfig,
15 15
   devtool: false,
16
-  mode: 'production',
16
+  // mode: 'production',
17
+  mode: 'development',
17 18
   output: {
18 19
     ...baseConfig.output,
19 20
     filename: '[name].js'
@@ -94,9 +95,9 @@ const config = {
94 95
   optimization: {
95 96
     runtimeChunk: false,
96 97
     minimizer: [
97
-      new UglifyJsPlugin({
98
-        exclude: /.*ts-worker.*/
99
-      }),
98
+      // new UglifyJsPlugin({
99
+      //   exclude: /.*ts-worker.*/
100
+      // }),
100 101
       new OptimizeCSSAssetsPlugin({})
101 102
     ]
102 103
   }