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
After having optimized my main module, the CSS is added by JavaScript at runtime, by appending a style tag to the head tag. This is done in the main.js output file.
The CSS files that were combined aren't used anymore, so it could be interesting to remove them automatically. Maybe the removeCombined property could be read.
The text was updated successfully, but these errors were encountered:
Perhaps we should consider some edge cases, like if a CSS file is required by more than one build target.
Also, for the removal to actually happen, the optimizer should be configured with attributes config.removeCombined = true and config.buildCSS != false.
After having optimized my
main
module, the CSS is added by JavaScript at runtime, by appending astyle
tag to thehead
tag. This is done in themain.js
output file.The CSS files that were combined aren't used anymore, so it could be interesting to remove them automatically. Maybe the
removeCombined
property could be read.The text was updated successfully, but these errors were encountered: