Closed
Description
A file that imports a Svelte component...
import App from './App.svelte';
...gets rewritten by Snowpack thusly:
import App from './App.svelte.js';
This import will fail, because Snowpack only wants to serve App.js
. Needs a bit more investigation but at some point if I can make a minimal repro I'll raise an issue on the Snowpack issue tracker.