Error: Cannot find module 'autoprefixer'

解決法

普通に autoprefixer がなかったので、

yarn add autoprefixer

で解決。

同じメッセージのエラー

autoprefixer が入っているのにこのエラーが出る〜
という場合はtailwindCSSを最新にしたりすると良いらしい。

Tailwind in React project - getting "Cannot find module 'autoprefixer'" error during setup

I'm following the documentation for setting up Tailwind in a React project over on https://tailwindcss.com/docs/guides/create-react-app. I've been following the steps, but when I get to the part wh...

Stack Overflow