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
Issue in /src/pages/tutorials/basic-modifications/enable-sass-less/index.md
While trying to enable SASS support in a magento PWA studio project, I have experienced the following issues:
node-sass
sass
sass-loader
webpack > 5
sass-loader@10
localIdentName
webpack.config.js
To summarize, in order to enable SASS support we need to:
yarn add --dev sass sass-loader@10
config.module.rules.push({ test: /\.s[ca]ss$/, use: [ 'style-loader', { loader: 'css-loader', options: { modules: true, sourceMap: true, } }, 'sass-loader' ] });
I think it could be useful to report this information in the documentation.
The text was updated successfully, but these errors were encountered:
bdenham
No branches or pull requests
Issue in /src/pages/tutorials/basic-modifications/enable-sass-less/index.md
While trying to enable SASS support in a magento PWA studio project, I have experienced the following issues:
node-sass
package is deprecated, I've usedsass
package insteadsass-loader
package requirewebpack > 5
in newer versions; if magento pwa studio project use webpack 4.x, I've usesass-loader@10
packagelocalIdentName
option is not supported inwebpack.config.js
To summarize, in order to enable SASS support we need to:
yarn add --dev sass sass-loader@10
webpack.config.js
I think it could be useful to report this information in the documentation.
The text was updated successfully, but these errors were encountered: