How to use local static images in Svelte

Put your images folder in public folder then reference like this:

<img src="https://stackoverflow.com/questions/56895865/images/background.jpg" alt="background image" />

Or

let src = "https://stackoverflow.com/questions/56895865/images/background.jpg";
.
.
.

<img {src} alt="background image" />

Leave a Comment

File not found.