DEV Community

Discussion on: Getting started with Sapper, Svelte, Postcss & Tailwind

Collapse
 
filippemafra profile image
Filippe Mafra • Edited

Hi everyone,
If anyone have the problem:

TypeError: Invalid PostCSS Plugin found at: plugins[1]

, just replace in "package.json" ->

"postcss-nested": "^5.0.0",

to

"postcss-nested": "^4.2.3",

It happens because different parts of your system support different postcss. The PostCSS project is in the middle of migration process from PostCSS 7 to PostCSS 8

Collapse
 
wwwchique profile image
www-chique

You saved my day.

Collapse
 
epavanello profile image
Emanuele Pavanello

thanks!