DEV Community

Discussion on: Build a browser extension with Svelte

Collapse
 
khangnd profile image
Khang • Edited

Thanks Eric!

I checked your site and it is the exact issue I also faced when I started with Svelte:

You deployed a dev version of the code, which still has the live reload enabled, but this script couldn't be found, hence the issue. What you need is the built version (npm run build) to deploy.

Collapse
 
eric23 profile image
Eric

That fixed it.
Thank you so much!