#### Structure ``` my-app ├── node_modules ├── ... └── src ├── styles │ ├── fonts │ │ └── asd.woff │ ├── fonts.scss │ └── typo.scss ├── App.js ├── index.scss └── index.js ``` #### index.scss ``` scss @import "../styles/fonts"; @import "../styles/typo"; ``` #### fonts.scss ``` scss @font-face { font-family: "asd"; src: url("./fonts/asd.woff") format("woff"); } ``` When I'm run `npm start` I get this error in console: ``` Failed to compile. ./src/index.scss) Module not found: Can't resolve './fonts/asd.woff' in '...' ``` ### Possible resolution As stated [here](https://github.com/webpack-contrib/sass-loader#problems-with-url) this problem can be solved using `resolve-url-loader`. #### Dependencies: ``` js "react-scripts": "2.0.0-next.3e165448" ```