You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create an HTML page that loads the CDN buttplug distro, uses defer in the script tag, and has other includes from different domains after it.
Expected behavior
Things load fine
Actual behavior
Chunks can't be found because they end up with the domain of the last script tag
Additional context
The publicpath override for webpack tries to load the URL of the last script tag, but if defer is used, all tags are loaded before script tags actually fetch their scripts. This means we'll take the URL of whatever the content for the last script tag is.
The text was updated successfully, but these errors were encountered:
Describe the bug
Expected behavior
Things load fine
Actual behavior
Chunks can't be found because they end up with the domain of the last script tag
Additional context
The publicpath override for webpack tries to load the URL of the last script tag, but if defer is used, all tags are loaded before script tags actually fetch their scripts. This means we'll take the URL of whatever the content for the last script tag is.
The text was updated successfully, but these errors were encountered: