mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
23 lines
621 B
Plaintext
23 lines
621 B
Plaintext
---
|
|
title: 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](/docs/pages/guides/post-css).
|
|
You can [read more about how to use CSS Modules here](/docs/pages/guides/post-css).
|