diff --git a/client/webpack-workers.js b/client/webpack-workers.js index dd4a10c0264..7d6cd9d3b47 100644 --- a/client/webpack-workers.js +++ b/client/webpack-workers.js @@ -21,7 +21,7 @@ module.exports = (env = {}) => { filename: chunkData => { // construct and output the filename here, so the client can use the // json to find the file. - const filename = `${chunkData.chunk.name}.${chunkData.chunk.contentHash.javascript}`; + const filename = `${chunkData.chunk.name}-${chunkData.chunk.contentHash.javascript}`; writeFileSync( path.join(configPath, `${chunkData.chunk.name}.json`), `{"filename": "${filename}"}`