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 d22bf26 commit 6d63954Copy full SHA for 6d63954
webpack/localization-plugin/src/LocalizationPlugin.ts
@@ -195,7 +195,7 @@ export class LocalizationPlugin implements Webpack.Plugin {
195
assetPath.match(Constants.LOCALE_FILENAME_PLACEHOLDER_REGEX)
196
) {
197
// Does this look like an async chunk URL generator?
198
- if (typeof options.chunk.id === 'string' && options.chunk.id.match(/^\" +/)) {
+ if (typeof options.chunk.id === 'string' && options.chunk.id.match(/^\" \+/)) {
199
return assetPath.replace(
200
Constants.LOCALE_FILENAME_PLACEHOLDER_REGEX,
201
`" + ${Constants.JSONP_PLACEHOLDER} + "`
0 commit comments