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
Verified: the first time the command npm start is issued, marko-starter is not generating the browser-refresh tag with the index.marko.js file of the site-layout component. In doing so, live reload is not working...
A fix is to add this code:
<!-- @TODO disable in production build --><browser-refreshenabled />
After that, even removing the browser-refresh, live reload work as expected... Until the next time you do npm start. This seems to be something related to caching...
The text was updated successfully, but these errors were encountered:
Verified: the first time the command
npm start
is issued, marko-starter is not generating thebrowser-refresh
tag with theindex.marko.js
file of thesite-layout
component. In doing so, live reload is not working...A fix is to add this code:
right before the
</body>
tag, as described in browser-refresh-taglib.After that, even removing the
browser-refresh
, live reload work as expected... Until the next time you donpm start
. This seems to be something related to caching...The text was updated successfully, but these errors were encountered: