Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions packages/react-dev-utils/InlineChunkHtmlPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,22 @@ class InlineChunkHtmlPlugin {
}

compiler.hooks.compilation.tap('InlineChunkHtmlPlugin', compilation => {
const tagFunction = tag =>
this.getInlinedTag(publicPath, compilation.assets, tag);

const hooks = this.htmlWebpackPlugin.getHooks(compilation);
hooks.alterAssetTagGroups.tap('InlineChunkHtmlPlugin', assets => {
assets.headTags = assets.headTags.map(tagFunction);
assets.bodyTags = assets.bodyTags.map(tagFunction);
const deferScripts = [];
const tagFunction = tag => {
const result = this.getInlinedTag(publicPath, compilation.assets, tag);

if (result === tag || tag.tagName !== 'script' || !(tag.attributes && tag.attributes.defer)) {
return result;
}

deferScripts.push(result);
return undefined;
}

assets.headTags = assets.headTags.map(tagFunction).filter(Boolean);
assets.bodyTags = assets.bodyTags.map(tagFunction).filter(Boolean).concat(deferScripts);
});

// Still emit the runtime chunk for users who do not use our generated
Expand Down