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
Currently this plugin is either ripping out or replacing my sourceMappingUrl comments. I have these generated from a seperate webpack config. currently there is no way to say 'do nothing' .
additionally it would be nice to specify absolute path urls similar to how 'sourceMapDevTool' plugin works in webpack.here you can specify a url (for us a dev only server) and a path resolution from the config to create a url. that way you can have sourcemaps that point to a dev only server.
Example of this could be:
postcss: {
options: {
map: {ignoreUrls: 'http://mydev.local:8000/bundledCSS/*',//ignore existing maps if match wildcard..these are done by another build processpublicPath: 'http://mydev.local:8000/css/',//specify abs url relative to where css file is (same as sourceMapDevTool)file: '[file].map'//name of map file (same as sourceMapDevTool)}}
The text was updated successfully, but these errors were encountered:
Currently this plugin is either ripping out or replacing my sourceMappingUrl comments. I have these generated from a seperate webpack config. currently there is no way to say 'do nothing' .
additionally it would be nice to specify absolute path urls similar to how 'sourceMapDevTool' plugin works in webpack.here you can specify a url (for us a dev only server) and a path resolution from the config to create a url. that way you can have sourcemaps that point to a dev only server.
Example of this could be:
The text was updated successfully, but these errors were encountered: