Quasar Dev command not watching file changes
-
Hi, i have problem with
quasar dev
command
when i run the command, everything works fine, but when i change .vue or .scss file content and clickctrl+s
(save), webpack ignore the change and not refreshing the bundle.
When i change file name or change file location, it’s watching fine, but change file contents - noi tried to create new quasar project, but the issue still happens
i had this issue the past in other os (ubuntu 14.04) but then i just used the
watch-poll
option and it fixed the problem, currently there is no more watch-poll optionubuntu 18.04
node v. 8.11.3 (tried with v10 also)
npm 6.2.0
quasar-cli 0.16.4
quasar project 0.16.0anyone also experience this issue? need help here…
-
Are you also using applications like GitKraken or Code? All of these set up a large amount of file watchers and you may not have enough. You can run this command to resolve that:
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p