I'm currently working on an Angular app, and although there are no errors being displayed when running the app, I am consistently encountering warnings in various CSS files.
Module Warning (from ./node_modules/postcss-loader/src/index.js):
Warning
(114:1) @import must precede all other statements (besides @charset)
The specific import causing the warning at line 114 is:
@import url(http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
This warning appears whenever I use this type of import structure in my CSS files. Is there a resolution for this issue?