Closed
Description
Build hangs after Failed to compile.
when using sass imports
yarn create react-app test
yarn add node-sass
- Rename
index.css
toindex.scss
(update import inApp.js
) - In
index.scss
add@import "./foo.scss";
- In
index.js
addimport { Bar } from "./Foo"
Without 4. => Cannot find file './Foo' in './src'.
=> exit 1
Without 5. => File to import not found or unreadable: ./foo.scss.
=> exit 1
With 4. and 5. => Cannot find file './Foo' in './src'.
=> hangs