-
Notifications
You must be signed in to change notification settings - Fork 144
Same link added twice #93
Comments
The issue with the 2 calls was because |
There's a similar issue with #98 |
If
If you already have So, in short, for the use case you describe, I don't think you should be using |
mini-css-extract-plugin
injects<link href="/css/main.bundle.css" rel="stylesheet" />
to the html on buildtime.When I load
preload-webpack-plugin
aftermini-css-extract-plugin
,preload-webpack-plugin
injects<link as="style" href="/css/main.bundle.css" rel="preload">
to the head as expected, but now I am left with 2 calls to the same file.is there a way to remove
<link href="/css/main.bundle.css" rel="stylesheet" />
injected bymini-css-extract-plugin
?The text was updated successfully, but these errors were encountered: