NO_EXTERNAL_CSS_AT_IMPORTS
Conformance is available on Enterprise plans
Importing CSS through () is render blocking, causing browsers to sequentially download and parse the imported CSS (a critical request chain).
This can result in a flash of unstyled content (FOUC), where page content is briefly shown without complete styles until all required CSS has been downloaded and parsed, along with slower page load times.
Imports to relative paths are processed by frameworks like Next.js, and will not be affected by this issue.
Note that this rule currently only parses CSS and not CSS written in Less, Sass, or other CSS preprocessor syntaxes.
If you're importing a font, you can use which will automatically optimize your fonts (including custom fonts) and remove external network requests.
If you're importing CSS, such as Bootstrap, avoid loading it from external sources, such as a CDN or the Next.js public folder. Instead, you can import that CSS relatively, or from a package.
Was this helpful?