Currently if you want to import a local CSS file you need to use syntax like this:
@import { url('~/your-style.css') }
This seems a bit silly because:
I would like to request the syntax below to import a CSS file within my app:
@import { '~/your-style.css' }
Or even better drop the curly braces too:
@import '~your-style.css';
Thanks!
Currently if you want to import a local CSS file you need to use syntax like this:
This seems a bit silly because:
I would like to request the syntax below to import a CSS file within my app:
Or even better drop the curly braces too:
Thanks!