You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi !
With the last version of chokidar it's seems there is an issue on aboslute path on windows when watching less files.
I suggest you add this kind of code when you resolve the path in watch property, it solved my problem: paths = paths.replace(new RegExp('\\\\', 'g'), '/');
The text was updated successfully, but these errors were encountered:
Hi !
With the last version of chokidar it's seems there is an issue on aboslute path on windows when watching less files.
I suggest you add this kind of code when you resolve the path in watch property, it solved my problem:
paths = paths.replace(new RegExp('\\\\', 'g'), '/');
The text was updated successfully, but these errors were encountered: