Watching files outside of project directory #17389
Unanswered
Flamenco
asked this question in
CLI - BEX mode
Replies: 2 comments
-
I found a workaround for this, as after research it seems the required functionality is not available via Install nodemon
Then start "scripts": {
"dev": "nodemon --watch ../dir1 --watch ../dir2 --ext vue,js,ts --exec quasar dev -m bex"
} You MUST either add This is not a hot-reload for the watch directories, but is still hot-reloaded for the project directory, and is much better than |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to watch files outside of the project directory when building BEX project.
I understand that refreshing the browser is needed. My is issue is that I use a library on my machine outside the project directory, and the filewatcher will not rebuild when its source files change. I need to kill and restart the project every time a file changes, then reload the browser after 10-20 seconds.
I am using Vite, and there is no way I can see in the config to add additional paths either.
Beta Was this translation helpful? Give feedback.
All reactions