/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
errors/css-modules-npm.mdx
25 строк
863 B
Delba de Oliveira
Docs IA 2.0: Delete routing section, add BFF guide, polish getting started (#80365)
16 июн 2025, 15:42
Не верифицирован
16 июн 2025, 15:42
2e2ee08
Код
Авторство
О чём код?
--- title: CSS Modules Imported by a Dependency --- ## Why This Error Occurred One of your dependencies (`node_modules`) imports a CSS Modules file. This normally happens when a package's source files are accidentally consumed, instead of the built package. ## Possible Ways to Fix It Reach out to the maintainer and ask for them to publish a compiled version of their dependency. Compiled dependencies do not have references to CSS Module files, or any other files that require bundler-specific integrations. The dependency should also provide instructions about what CSS needs to be imported by you, in your application. If this is **first-party code**, try [including monorepo packages in the compilation pipeline](/docs/architecture/nextjs-compiler#module-transpilation). > **Good to know**: This limitation does not exist when using the App Router.