š„ SvelteKit Static Site GenerationĀ #
In this video on SvelteKit SSG, we have a look at when you might choose static site generation (SSG). We also look at why you would consider server side rendering (SSR) as an alternative. As well as an example use case of each, we also see how to set up SSG in your SvelteKit app. Finally, we see how you can mix SSR and SSG in the same Svelte app with SvelteKit.
If that’s what you wanted to know, then hit play on the video! After that, don’t forget to scroll down. You will see code blocks with the config mentioned in the video. Drop a comment below, or equally, reach out for a chat on Element as well as Twitter @mention if you have suggestions for improvements or questions.
š¹ SvelteKit SSG: VideoĀ #
š³ PollĀ #
š„Ā CodeĀ #
SvelteKit Config for Entirely SSGĀ SiteĀ #
Install the static adapter:
then update config:
SvelteKit Config for Some Prerendered PagesĀ #
- Switch out the static adapter for another.
-
Remove the
prerender: { default: true },
line used above - Then add this snippet to pages you want to prerender:
- Starting out Svelte and SvelteKit tutorial ,
- read about Cloudflare docs switching static site generator ,
- SvelteKit adapter docs
- Twitter handle: @askRodney ,
- Element chat: #Rodney matrix chat .
How do you make a completely static SvelteKit site?Ā #
- With SvelteKit you can opt for a completely static site. For most deployment flexibility, in this case, choose the static adapter: `pnpm add -D @sveltejs/adapter-static@next`. Then in your SvelteKit config file (`svelte.config.js`), set `kit.prerender.default` to `true` and also make sure your config uses the static adapter. You can specify an option config to the adapter: `{precompress: true}` to generate Brotli and gzip assets.
Can you mix SSG and SSR with SvelteKit?Ā #
- You might want to create a mostly SSR SvelteKit web app, but still have a few pages statically generated. This is possible with SvelteKit. Choose an adapter for the platform you plan to host your site on. Pick the auto adapter if you are not yet sure, it is easy to change out adapters later. Next add the adapter as a dependency in your project (e.g. `pnpm add -D @sveltejs/adapter-auto`). Now on any pages which you want to be rendered statically, add a `<script context="module">` tag. Inside, just add the configuration line `export const prerender = true;`. This is all you need for SvelteKit to prerender that page.
What advantages does SSG offer over SSR?Ā #
- Different developers have different preferences. As a general rule though, where different users see different content a server side rendered (SSR) model is a better choice. Here we are talking about sites where the user logs in and sees different content. Static site generation works in many other use cases. Typically, static sites are lightning fast. Since every user sees the same content, hosting services can have this content ready and even push it to CDN edge nodes which are closer to the site visitor. Static sites can also be more secure, provide better user experience and also perform favourably in terms of SEO. However, with the wrong generator, build times can be slow and even adding a single comma might mean a time-consuming rebuild. This can slow down the development cycle, and impact issue debugging. For that reason, a modern SSG tool like SvelteKit or Astro is often a better choice.
š LinksĀ #
š SvelteKit SSG: SummaryĀ #
šš½ FeedbackĀ #
If you have found this video useful, see links below for further related content on this site. I do hope you learned one new thing from the video. Let me know if there are any ways I can improve on it. I hope you will use the code or starter in your own projects. Be sure to share your work on Twitter, giving me a mention, so I can see what you did. Finally, be sure to let me know ideas for other short videos you would like to see. Read on to find ways to get in touch, further below. If you have found this post useful, even though you can only afford even a tiny contribution, please consider supporting me through Buy me a Coffee.
Just dropped a little video where we talk about the relative merits of the SSR and SSG models.
— Rodney (@askRodney) June 28, 2022
We also see how you can set up ā¤ļø SvelteKit for a completely static site or mix with some server side rendering if needed.
Hope you find it useful!
https://t.co/7HQytJzDmb
Finally, feel free to share the post on your social media accounts for all your followers who will find it useful. As well as leaving a comment below, you can get in touch via @askRodney on Twitter as well as via the #rodney Element Matrix chat . Also, see further ways to get in touch with Rodney Lab. I post regularly on SvelteKit as well as Search Engine Optimization among other topics. Also, subscribe to the newsletter to keep up-to-date with our latest projects.