-
Notifications
You must be signed in to change notification settings - Fork 2.5k
feat(webpack): set default sassImplementation to sass-embedded #30580
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
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Skipped Deployment
|
View your CI Pipeline Execution ↗ for commit 2234e27.
☁️ Nx Cloud last updated this comment at |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We might want to call this out as a breaking change. Even though they are comparable functionality-wise, sass-embedded
only works in selected platforms (the most used ones, but it could still break some setups).
packages/webpack/src/plugins/nx-webpack-plugin/nx-app-webpack-plugin-options.ts
Show resolved
Hide resolved
44c4cdc
to
2234e27
Compare
2234e27
to
8c9ca8a
Compare
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Current Behavior
The
sassImplementation
option for Webpack and Rspack is set tosass
by default.sass-embedded
offers a faster alternative.Expected Behavior
Switch the default
sassImplementation
option tosass-embedded
.