We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5d172c commit 0bcd6b4Copy full SHA for 0bcd6b4
constants.js
@@ -8,7 +8,7 @@ exports.E2E_PORT = 4201;
8
exports.PROD_PORT = 8086;
9
exports.UNIVERSAL_PORT = 8001;
10
11
-exports.SHOW_WEBPACK_BUNDLE_ANALYZER = false;
+exports.SHOW_WEBPACK_BUNDLE_ANALYZER = true;
12
13
/**
14
* These constants set whether or not you will use proxy for Webpack DevServer
webpack.config.ts
@@ -243,7 +243,7 @@ const commonConfig = (function webpackConfig(): WebpackConfig {
243
}),
244
...MY_CLIENT_PRODUCTION_PLUGINS
245
);
246
- if (!E2E && !WATCH && !UNIVERSAL && SHOW_WEBPACK_BUNDLE_ANALYZER) {
+ if (!E2E && !WATCH && !UNIVERSAL && !PUBLISH && SHOW_WEBPACK_BUNDLE_ANALYZER) {
247
config.plugins.push(new BundleAnalyzerPlugin({ analyzerPort: 5000 }));
248
}
249
0 commit comments