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
When output.publicPath in webpack is a URL, as is the case when using a CDN, the returned script tags from extractor.getScriptTags have broken src URLs with a slash being removed from the protocol.
export const joinURLPath = (...paths) => paths.join('/').replace(/\/\//g, '/')
I guess it's there to strip a trailing slash in the public path? Or is there another purpose?
When
output.publicPath
in webpack is a URL, as is the case when using a CDN, the returned script tags fromextractor.getScriptTags
have broken src URLs with a slash being removed from the protocol.If the below is set in webpack.
then
extractor.getScriptTags()
will return.The text was updated successfully, but these errors were encountered: