-
-
Notifications
You must be signed in to change notification settings - Fork 601
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
Use devtool and sourceMap flag from webpack config #40
Conversation
Instead of needing to apply the sourceMap query parameter generate if a devtool option is specified in the webpack config.
Seems reasonable... @sokra why did you use a query param? |
This It injects the SourceMap to the resulting bundle (instead of generating a separate SourceMap file). You can use it without the SourceMap devtool. It is not related to the devtool at all. So I would better leave it opt-in. Currently it's only working correctly with |
Source-maps do not work for CSS when you base64 encode them, yet it would be nice to to facilitate dynamically applying source-maps using `webpack -d`. This will apply the sourceMap query param to the css-loader if a devtool option is selected in the webpack config. Relates to webpack-contrib/less-loader#36 Relates to webpack-contrib/css-loader#40
Source-maps do not work for CSS when you base64 encode them, yet it would be nice to to facilitate dynamically applying source-maps using `webpack -d`. This will apply the sourceMap query param to the css-loader if a devtool option is selected in the webpack config. Relates to webpack-contrib/less-loader#36 Relates to webpack-contrib/css-loader#40
Source-maps do not work for CSS when you base64 encode them, yet it would be nice to to facilitate dynamically applying source-maps using `webpack -d`. This will apply the sourceMap query param to the css-loader if a devtool option is selected in the webpack config. Relates to webpack-contrib/less-loader#36 Relates to webpack-contrib/css-loader#40
Source-maps do not work for CSS when you base64 encode them, yet it would be nice to to facilitate dynamically applying source-maps using `webpack -d`. This will apply the sourceMap query param to the css-loader if a devtool option is selected in the webpack config. Relates to webpack-contrib/less-loader#36 Relates to webpack-contrib/css-loader#40
Source-maps do not work for CSS when you base64 encode them, yet it would be nice to to facilitate dynamically applying source-maps using `webpack -d`. This will apply the sourceMap query param to the css-loader if a devtool option is selected in the webpack config. Relates to webpack-contrib/less-loader#36 Relates to webpack-contrib/css-loader#40
Closing in favor of webpack-contrib/extract-text-webpack-plugin#53 |
Not using the `this.sourceMap` flag because css source maps are different @see webpack-contrib/css-loader#40
Instead of needing to apply the sourceMap query parameter generate if a
devtool option is specified in the webpack config.