2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

npx tailwindcss initでnpm error could not determine executable to runエラーが出る

Posted at

はじめに

TailwindCSSをReactに導入する際にエラーが出たので記事にします

問題

今までどおりインストールコマンドを叩いたらエラーが出てしまいました

$ npm install -D tailwindcss autoprefixer postcss
$ npx tailwindcss init -p
npm error could not determine executable to run
npm error A complete log of this run can be found in: /home/jinwatanabe/.npm/_logs/2025-01-26T01_25_28_159Z-debug-0.log

解決方法

TailwindCSSのバージョンが4系になってインストール方法が大幅に変わりました

いままでよりも簡単になっています

もし今まで通りにセットアップするなら

$ npm install -D tailwindcss@3.4.13 autoprefixer postcss
$ npx tailwindcss init -p

3系を指定すれば大丈夫です!

おわりに

これまでのハンズオンが動かなくなってしまうのだけが辛いところです。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?