소스 검색

build: avoid warning if library is < 750KB

If we go beyond this limit, we'll have to put it on a diet.
master
Saúl Ibarra Corretgé 5 년 전
부모
커밋
4010d2a301
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4
    0
      webpack.config.js

+ 4
- 0
webpack.config.js 파일 보기

@@ -61,6 +61,10 @@ const config = {
61 61
         filename: `[name]${minimize ? '.min' : ''}.js`,
62 62
         path: process.cwd(),
63 63
         sourceMapFilename: `[name].${minimize ? 'min' : 'js'}.map`
64
+    },
65
+    performance: {
66
+        maxAssetSize: 750000,
67
+        maxEntrypointSize: 750000
64 68
     }
65 69
 };
66 70
 

Loading…
취소
저장