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
CSS files are in public/css/ and JS files are in public/js/. The page itself is at public/index.html.
I see updates when edits are made to index.html and css files, but not for the JS files. Is there a way to get it to refresh the page when JS sources are changed?
Also, I'm using <script type="module" src="js/main.js"></script>. Although it doesn't seem to work with a plain old <script src="js/main.js"> either.
I also get the following warning which is a bit of an annoyance since it's not correct, but I can live with it...
NOTE: It looks like you are using budo without a JavaScript entry.
This is fine, but if you were trying to bundle the "*.{html,js,css}" file,
you should re-arrange your arguments like so:
budo *.{html,js,css} --live
The text was updated successfully, but these errors were encountered:
One strange thing is that the first edit I make to the JS file is not picked up. I have to shift-reload once, then after that budo's live reload seems to work from that point on.
I'm using this command:
CSS files are in
public/css/
and JS files are inpublic/js/
. The page itself is atpublic/index.html
.I see updates when edits are made to index.html and css files, but not for the JS files. Is there a way to get it to refresh the page when JS sources are changed?
Also, I'm using
<script type="module" src="js/main.js"></script>
. Although it doesn't seem to work with a plain old<script src="js/main.js">
either.I also get the following warning which is a bit of an annoyance since it's not correct, but I can live with it...
The text was updated successfully, but these errors were encountered: