I have a simple website, with the project structure as
(project)
js
format.js
index.html
style.css
with “js” as the project folder. In index.html, I made sure to specify:
<script type="text/javascript" src="js/format.js"></script>
On the test environment (I use ViteJS) it works fine. However, when I launched the website on Netlify, the JavaScript does not load because it somehow can’t find the file path. I don’t understand why- can anybody help?