sapper
sapper copied to clipboard
The next small thing in web development, powered by Svelte
**Describe the bug** Current, route changes leave keyboard focus in the same position in the DOM and do not announce a new page has loaded. I see issue #287 was...
In an attempt to fix #1076, I recently merged #1098, but this seems to have had an unpleasant side effect of moving a whole bunch of styles from `.css` files...
**Is your feature request related to a problem? Please describe.** sapper.base was introduced to solve https://github.com/sveltejs/sapper/issues/180 over a year ago. it is not optional for sapper to compile (i'm not...
Hi, i have trouble to register/update my service worker. From the Chrome Dev Tools i see this: My static folder is not bigger than 5MB (~ 180KB). That should not...
When i add a basepath to the application with: in server.js: ``` polka() .use( '/subpage', ... ``` and call `sapper export --basepath subpage` then this basepath is not appended to...
There's a desire to set certain response attributes on a per-route basis. E.g. the `Cache-Control` header, other headers, response type, etc. A few ideas: * Handle it with middleware *...
**Describe the bug** I have a Component that injects some CSS in DEV mode. I don't want this style to be applied in my production build. To do this I...