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
{{ message }}
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
In projects created by create-react-app with default settings, all that is required for importing sass is to install node-sass. The project automatically understands to add the sass loader, enabling import "./myFile.scss" syntax.
In create-react-app --scripts-version=react-scripts-ts, users are required to add another layer of file watchers, adding unnecessary complexity.
Please update webpack config in the generator to load any scss files with the sass loader, just as it currently does with css files and just ass the default generator does with scss files.
The text was updated successfully, but these errors were encountered:
In projects created by
create-react-app
with default settings, all that is required for importing sass is to installnode-sass
. The project automatically understands to add the sass loader, enablingimport "./myFile.scss"
syntax.In
create-react-app --scripts-version=react-scripts-ts
, users are required to add another layer of file watchers, adding unnecessary complexity.Please update webpack config in the generator to load any
scss
files with the sass loader, just as it currently does withcss
files and just ass the default generator does withscss
files.The text was updated successfully, but these errors were encountered: