Skip to content

Commit 1261959

Browse files
committed
reversing pathinfo logic
This creates extra comments in the final .js files, to help debugging. This was a mistake when originally added - the logic was reversed.
1 parent 2cae5df commit 1261959

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/config-generator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class ConfigGenerator {
107107
// will use the CDN path (if one is available) so that split
108108
// chunks load internally through the CDN.
109109
publicPath: this.webpackConfig.getRealPublicPath(),
110-
pathinfo: this.webpackConfig.isProduction()
110+
pathinfo: !this.webpackConfig.isProduction()
111111
};
112112
}
113113

0 commit comments

Comments
 (0)