-
Screencast from 2024-08-30 21-53-33.webm |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It appears that the file watcher, is detecting a change in your working directory. It could be due to another tool or script you are using that is, for example, writing a log file. You could checks last modified files within a directory with By default, the file_watcher does exclude the file Since there is no central configuration for this as of now, you will have to edit your file Please refer to the documentation of Also, please edit your title, so it could help others with this loop issue! |
Beta Was this translation helpful? Give feedback.
It appears that the file watcher, is detecting a change in your working directory.
It could be due to another tool or script you are using that is, for example, writing a log file.
Note that each reloads is due to a new change, so make sure to locate what is changing in your project files (including sub directories).
You could checks last modified files within a directory with
ls -ltR | head
Since it's blinking, we don't see but the last modified file name appears in the watcher pane, aside of
MODIFY
.By default, the file_watcher does exclude the file
shelix.logs
and/.git
hidden directory in your project directory.Since there is no central configuration for this as of now, you will hav…