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
I would like devd to (1) serve files from the top-directory (basically index.html) and (2) reload when build/foo.js (or any other file in build/ changes). In particular, I don't want devd to reload if index.html (or any other file outside of build/) is changed.
I have tried several alternatives with no success:
devd -w build/ -l .: reloads when index.html is changed (and I don't want that)
devd -w build/ -L .: never reloads, even if build/foo.js is changed
The text was updated successfully, but these errors were encountered:
I have the following directory structure:
I would like devd to (1) serve files from the top-directory (basically index.html) and (2) reload when
build/foo.js
(or any other file inbuild/
changes). In particular, I don't want devd to reload if index.html (or any other file outside ofbuild/
) is changed.I have tried several alternatives with no success:
devd -w build/ -l .
: reloads when index.html is changed (and I don't want that)devd -w build/ -L .
: never reloads, even if build/foo.js is changedThe text was updated successfully, but these errors were encountered: