Created by: atlanteh
Adding resolve-url-loader broke all apps using scss with centralized assets folder and all url(./assets/*.png)
broke (#7023)
This change allows apps to use url(/assets/*.png)
and it would map to src/assets/*.png
I tested this on my app which has an images directory and after upgrading to CRA 3.2.0 (from 2.1.2) it failed. After reading resolve-url-loader I added this option and changed the path to absolute (/assets/*.png)
and everything started working again