I’ll give an example of what I thought was right, but apparently isn’t because I just get the alt text.
Memory-card/src/lib/Content.svelte
Memory-card/assets/image.png
Below is in Content.svelte
<img src=“./assets/image.png” alt=“image”>
I also tried ../assets/image.png
The way I read the above is ./ goes back one, ../ goes back 2? So using the above example, ./assets/image.png probably wouldn’t work as it’ll be trying to locate assets inside lib, I think. And then ../ probably wouldn’t work because it’s trying to access assets in src? So do I go …/ or am I missing something here?