sapper
sapper copied to clipboard
The next small thing in web development, powered by Svelte
**Is your feature request related to a problem? Please describe.** If you have a content-driven blog, that uses Markdown processor, you want rollup/webpack to watch certain directories, where you hold...
**Describe the bug** Check out [this repo](https://github.com/babakfp/sapper-layouts-and-error-page-issue). There is 2 pages `routes/index.svelte` and `routes/_error.svelte`. Run the project and you will see the "HOME PAGE" title in red color. It's because...
[We are currently working on the successor to Sapper called SvelteKit](https://svelte.dev/blog/sveltekit-beta). It contains most of Sapper's client code and adds unbundled development via Vite for a better development experience. [There...
I have markup like so: ``` The Referendum ``` In my nav.svelte component. This works fine in dev. However, in production, there is often a strange duplication of many elements....
The documentation contains the following example : ```ts sapper.start({ target: document.querySelector('#sapper') }); ``` However, `document.querySelector('#sapper')` can return `null`, but `sapper.start` does not accept null. It would be great to either...
**Describe the bug** If you configure the site to run at a relative sub-directory, like https://my-example-site.com/my-base-path/, per [Base URLs](https://sapper.svelte.dev/docs#Base_URLs), then run a `sapper export`, when you load the page you...
This issue appears after upgrading to 0.29.x. I used the gzipPlugin() in my sapper projects rollup plugin configuration for my client like this: ``` export default { client: { input:...
Hi to everyone, I'm having an issue with `npm run export`, i created a new project with rollup. I added a simple button that emit a console.log, but nothing appens....
# before remove ``` ``` - `http://localhost:3000/about` - is ok - `http://localhost:3000/about/` - fail ## patch ### template.html https://github.com/sveltejs/sapper-template/blob/master/src/template.html#L8-L12 ```html ``` ### runtime/src/server/middleware/get_page_handler.ts `node_modules/sapper/runtime/server.mjs:2544` https://github.com/sveltejs/sapper/blob/master/runtime/src/server/middleware/get_page_handler.ts#L321 ```js styles = Array.from(css_chunks) //...
### Before submitting the PR, please make sure you do the following - [x] It's really useful if your PR references an issue where it is discussed ahead of time....