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
First thanks you for this build tool, it works very well and make forget the pain about the workflow around Shopify theme creation !
I'm trying to figure how to enable the sourcemaps in the pipeline.
I assume that the file staler.config.js export an object that extend the webpack default build right ?
So I tried to add this key which in Webpack should add sourcemaps to any bundled files :
module.exports = {
devtool: 'source-map',
Unfortunatly it doesn't do anything.
Do you have any advice/recommandation about this ?
The text was updated successfully, but these errors were encountered:
Well after a few hours digging further deep in the project, I figured that the slater.config.js do not extend any Webpack configuration.
I tried some solutions about extend the config with a function into the presets key but it didn't work at all.
This solution was for me the best, even if you don't want work with tailwind css this is for me the best solution as you have totally freedom about your css setup ! #14 (comment)
With Laravel Mix, if you want enable the sourcemaps add simply this line to the mix()
Hello,
First thanks you for this build tool, it works very well and make forget the pain about the workflow around Shopify theme creation !
I'm trying to figure how to enable the sourcemaps in the pipeline.
I assume that the file staler.config.js export an object that extend the webpack default build right ?
So I tried to add this key which in Webpack should add sourcemaps to any bundled files :
Unfortunatly it doesn't do anything.
Do you have any advice/recommandation about this ?
The text was updated successfully, but these errors were encountered: