### Is this a bug report? No ### The problem I am using [creacte-react-app 2.0.0-next.66cc7a90](https://www.npmjs.com/package/create-react-app), which already has [support for Sass/Scss files](https://github.com/facebook/create-react-app/pull/4195) 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?