rsnext/errors/postcss-ignored-plugin.md
John Jago c6ba29da00
docs: use descriptive links instead of "click here" (#25897)
* docs: use descriptive links instead of "click here"

Linking text such as "here" or "click here" is not accessible (and
doesn't look that great either). The best example of why it's better to
use link text that provides context is that some screen readers allow
navigation by links alone. If all links say "click here", then how does
the user know which one to go to?

I tried to make the minimal change necessary to make the link text
descriptive but had to reword a few sentences that didn't read well.

* Apply suggestions from code review

Co-authored-by: Lee Robinson <me@leerob.io>
Co-authored-by: JJ Kasper <jj@jjsweb.site>
2021-06-09 13:23:16 -05:00

695 B

Ignored PostCSS Plugin

Why This Error Occurred

The project's custom PostCSS configuration attempts to configure unnecessary plugins:

  • postcss-modules-values
  • postcss-modules-scope
  • postcss-modules-extract-imports
  • postcss-modules-local-by-default
  • postcss-modules

Possible Ways to Fix It

Remove the plugin specified in the error message from your custom PostCSS configuration.

How do I configure CSS Modules?

CSS Modules are supported in Next.js' built-in CSS support. You can read more about how to use CSS Modules here.