From a7e66d594e2c7e0a2cccfed7c15a069ffebb96c1 Mon Sep 17 00:00:00 2001 From: Mef45 <26562037+Mef45@users.noreply.github.com> Date: Tue, 9 Apr 2024 12:37:14 +0300 Subject: [PATCH] docs: add step for adding font links in svelte:head to sveltekit installation guide (#67) * docs: add step for adding font links in svelte:head to sveltekit installation guide * style: replace tabs with spaces --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index f77f4aa..2702559 100644 --- a/README.md +++ b/README.md @@ -129,6 +129,17 @@ export default defineConfig({ }) ] }) + +// +layout.svelte + + + + {#each links as link} + + {/each} + ``` Example: [`examples/sveltekit`](./examples/sveltekit)