From 7ac3854613ebad0b30a1d1b8dc0a2a34542a8de5 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Sat, 10 Sep 2022 14:00:50 -0700 Subject: [PATCH] [docs] remove beta label from SvelteKit mention (#7853) --- site/content/faq/900-is-there-a-router.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/faq/900-is-there-a-router.md b/site/content/faq/900-is-there-a-router.md index 9d50bbe490..2f11e0e626 100644 --- a/site/content/faq/900-is-there-a-router.md +++ b/site/content/faq/900-is-there-a-router.md @@ -2,7 +2,7 @@ question: Is there a router? --- -The official routing library is [SvelteKit](https://kit.svelte.dev/), which is currently in beta. SvelteKit provides a filesystem router, server-side rendering (SSR), and hot module reloading (HMR) in one easy-to-use package. It shares similarities with Next.js for React. +The official routing library is [SvelteKit](https://kit.svelte.dev/). SvelteKit provides a filesystem router, server-side rendering (SSR), and hot module reloading (HMR) in one easy-to-use package. It shares similarities with Next.js for React. However, you can use any router lib you want. A lot of people use [page.js](https://github.com/visionmedia/page.js). There's also [navaid](https://github.com/lukeed/navaid), which is very similar. And [universal-router](https://github.com/kriasoft/universal-router), which is isomorphic with child routes, but without built-in history support.