From dc94c26b076815aeba23cc1493c6a07474ea158b Mon Sep 17 00:00:00 2001 From: "Kim, Jang-hwan" Date: Tue, 21 Dec 2021 20:23:01 +0900 Subject: [PATCH] fix broken link (blog/the-easiest-way-to-get-started) links to `https://svelte.dev/tutorial/blog/the-easiest-way-to-get-started`. Adding leading slash removes the `/tutorial/` part. --- site/content/tutorial/19-next-steps/01-congratulations/text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/tutorial/19-next-steps/01-congratulations/text.md b/site/content/tutorial/19-next-steps/01-congratulations/text.md index 558cf6bda6..af6de2efe2 100644 --- a/site/content/tutorial/19-next-steps/01-congratulations/text.md +++ b/site/content/tutorial/19-next-steps/01-congratulations/text.md @@ -4,7 +4,7 @@ title: Congratulations! You've now finished the Svelte tutorial and are ready to start building apps. You can refer back to individual chapters at any time (click the title above to reveal a dropdown) or continue your learning via the [API reference](docs), [Examples](examples) and [Blog](blog). If you're a Twitter user, you can get updates via [@sveltejs](https://twitter.com/sveltejs). -To get set up in your local development environment, check out [the quickstart guide](blog/the-easiest-way-to-get-started). +To get set up in your local development environment, check out [the quickstart guide](/blog/the-easiest-way-to-get-started). If you're looking for a more expansive framework that includes routing, server-side rendering and everything else, take a look at [SvelteKit](https://kit.svelte.dev).