1
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?

More than 5 years have passed since last update.

Laravel-Mixのphp run watchが上手くファイルを監視してくれない時の対処法

Posted at

#環境
MacOS
Laravel-Mix:4.0.7

#起こっている問題
Laravel-Mixの

$ php run dev

を使用してLaravelプロジェクト内のファイルの変更を監視します。
__Vue.js__や__Sass__などのコンパイルが変換なファイルをに変更があれば自動的にコンパイルできるコマンドですが、なぜかファイルに変更があっても動いてくれなかった。

#解決方法
一度「control」+「c」でファイルの監視を止めて、問題が起こってるプロジェクトのディレクトリ内で

$ npm run watch-poll

をターミナル上で実行します。

これでファイルの変更があればコンパイルしてくれるようになりました。

1
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
1
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?