From 25f05973ecf4938504cfc8ad1a60cb5ddfd8bb14 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Sun, 22 Dec 2024 12:44:01 -0500 Subject: [PATCH] day 22 --- apps/svelte.dev/content/blog/2024-12-01-advent-of-svelte.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/svelte.dev/content/blog/2024-12-01-advent-of-svelte.md b/apps/svelte.dev/content/blog/2024-12-01-advent-of-svelte.md index f061d02dd..769f24ad7 100644 --- a/apps/svelte.dev/content/blog/2024-12-01-advent-of-svelte.md +++ b/apps/svelte.dev/content/blog/2024-12-01-advent-of-svelte.md @@ -179,7 +179,10 @@ It comes with caveats — you can't use server-rendering (or any server logic), ## Day 22 -Coming soon! +Following the introduction of the `bundleStrategy` option on day 19, and hash-based routing yesterday, we now have the ability to generate fully self-contained apps with the `bundleStrategy: 'inline'` option. Together with Vite's `assetsInlineLimit` option, it's possible to put an entire SvelteKit app — code, styles, fonts, images, audio and everything else — inside a single .html file that you can share with people on a floppy disk. + +- [docs](/docs/kit/configuration#output) +- [example downloadable Snake game](https://svelte-snek.vercel.app/) ## Day 23