We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Had to remove CSS source maps to fix #61
The text was updated successfully, but these errors were encountered:
How would I use webpack-merge and config/webpack.dev.conf.js to turn source maps back on? I tried:
config/webpack.dev.conf.js
{ module: { rules: [ { test: /\.s[ac]ss$/, use: [ { loader: 'style-loader' }, { loader: 'css-loader' , options: { sourceMap: true } }, { loader: 'sass-loader' , options: { sourceMap: true } } ] } ] } }
but no luck. Temporarily I've just done it by editing the node_module, but an example of how to use webpack-merge correctly would be awesome.
I don't use sections or admin during front end development, so #61 doesn't affect me.
Sorry, something went wrong.
Done directly in the shopify-pipeline module this should work. Have you restarted the server after making the changes ?
shopify-pipeline
I'm not aware of any way to re-enable CSS source maps as you need to modify the loader from Shopify-Pipeline itself.
Ah, OK thanks. I was hoping there was a way to do it with custom config. I did get source maps working by editing shopifyi pipeline directly.
nddery
No branches or pull requests
Had to remove CSS source maps to fix #61
The text was updated successfully, but these errors were encountered: