create-react-app 2.0, how to use absolute path import in sass/scss files?
Created by: gudh
Is this a bug report?
No
The problem
I am using creacte-react-app 2.0.0-next.66cc7a90, which already has support for Sass/Scss files
however with default relative import in Sass/Scss files, i have to use code like
@import "../../../../../styles/variables/_variables.scss";
instead I want to use absolute import so i can import with code
@import "styles/variables/_variables.scss";
I know one way to acheve so is to update options
{
loader: "sass-loader",
options: {
includePaths: ["absolute/path/a", "absolute/path/b"]
}
but I want to do it without ejecting, how can i do it? using react-app-rewired?