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
If you use the html-loader (that minimizes per default), the regexes to inject tags will break as html-loader uses the removeOptionalTags option from html-minimizer, which removes </body> etc.
One has to be careful and explicitly set html?removeOptionalTags=false!<my-template>.
We should emit a warning if the option is not explicitly set to true.
The text was updated successfully, but these errors were encountered:
If you use the html-loader (that minimizes per default), the regexes to inject tags will break as html-loader uses the
removeOptionalTags
option from html-minimizer, which removes</body>
etc.One has to be careful and explicitly set
html?removeOptionalTags=false!<my-template>
.We should emit a warning if the option is not explicitly set to
true
.The text was updated successfully, but these errors were encountered: