-
Notifications
You must be signed in to change notification settings - Fork 12k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CSS urls are broken when using sourcemaps #4273
Comments
The note on
|
This addresses a limitation with `style-loader` where asset urls would not be generated correctly. Fix angular#4273
This addresses a limitation with `style-loader` where asset urls would not be generated correctly. Fix #4273
This addresses a limitation with `style-loader` where asset urls would not be generated correctly. Fix angular#4273
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Fixing sourcemaps for global css in #4222 introduced a new bug due to webpack-contrib/css-loader#232.
While
--sourcemap
is enabled (default for dev) and--extract-css
is disabled (default for dev), urls in css can become incorrect. See webpack-contrib/css-loader#232 for more details.Temporary workaround is to serve with either
--no-sourcemap
or--extract-css
.The text was updated successfully, but these errors were encountered: