Elderjs / template

Elder.js template project. It is part template, part tutorial. Dive in!
https://elderjs.pages.dev/
MIT License
113 stars 32 forks source link

Component hydration fails #14

Closed meigo closed 4 years ago

meigo commented 4 years ago

With latest template using elderjs v1 loading of hydrated component fails

s.min.js:1 Uncaught (in promise) Error: svelte/entryClock-2e8914b9.js, http://localhost:5000/ (SystemJS https://git.io/JvFET#8) at s.min.js:1

Reason is backslash in beginning of import path in index.html

...
System.import('\svelte/entryClock-2e8914b9.js').then(({ default: App }) => {
...

Probably a Windows specific quirck.

nickreese commented 4 years ago

@meigo pushed a fix in v1.0.4.

Thanks.

meigo commented 4 years ago

Beautiful, thank you.