From 0e6a6d5d6c9f4cece3c17114d9478fd4c59987fa Mon Sep 17 00:00:00 2001 From: Conduitry Date: Mon, 12 Sep 2022 14:08:37 -0400 Subject: [PATCH] [docs] fix many links (#6741) --- .changeset/tasty-geese-burn.md | 5 +++++ documentation/docs/00-introduction.md | 2 +- documentation/docs/01-project-structure.md | 2 +- documentation/docs/02-web-standards.md | 2 +- documentation/docs/04-advanced-routing.md | 4 ++-- documentation/docs/05-load.md | 6 +++--- documentation/docs/11-adapters.md | 2 +- documentation/docs/12-page-options.md | 2 +- documentation/docs/15-configuration.md | 4 ++-- documentation/docs/17-seo.md | 4 ++-- documentation/docs/19-accessibility.md | 2 +- documentation/docs/80-migrating.md | 6 +++--- packages/adapter-cloudflare/README.md | 4 ++-- packages/adapter-node/README.md | 2 +- packages/adapter-vercel/README.md | 2 +- packages/kit/scripts/special-types/$env+dynamic+private.md | 2 +- packages/kit/scripts/special-types/$env+dynamic+public.md | 2 +- packages/kit/scripts/special-types/$env+static+private.md | 2 +- packages/kit/scripts/special-types/$env+static+public.md | 2 +- packages/kit/types/index.d.ts | 2 +- 20 files changed, 32 insertions(+), 27 deletions(-) create mode 100644 .changeset/tasty-geese-burn.md diff --git a/.changeset/tasty-geese-burn.md b/.changeset/tasty-geese-burn.md new file mode 100644 index 000000000000..e7834786da85 --- /dev/null +++ b/.changeset/tasty-geese-burn.md @@ -0,0 +1,5 @@ +--- +'@sveltejs/kit': patch +--- + +[fix] docs links in generated and published types diff --git a/documentation/docs/00-introduction.md b/documentation/docs/00-introduction.md index f5e817d61efc..3278c0469488 100644 --- a/documentation/docs/00-introduction.md +++ b/documentation/docs/00-introduction.md @@ -12,7 +12,7 @@ title: Introduction SvelteKit is a framework for building extremely high-performance web apps. -Building an app with all the modern best practices is fiendishly complicated. Those practices include [build optimizations](https://vitejs.dev/guide/features.html#build-optimizations), so that you load only the minimal required code; [offline support](/docs/service-workers); [prefetching](/docs/link-options#data-sveltekit-prefetch) pages before the user initiates navigation; and [configurable rendering](/docs/page-options) that allows you to render your app [on the server](/docs/appendix#ssr) or [in the browser](/docs/appendix#csr) at runtime or [at build-time](/docs/page-options#prerender). SvelteKit does all the boring stuff for you so that you can get on with the creative part. +Building an app with all the modern best practices is fiendishly complicated. Those practices include [build optimizations](https://vitejs.dev/guide/features.html#build-optimizations), so that you load only the minimal required code; [offline support](/docs/service-workers); [prefetching](/docs/link-options#data-sveltekit-prefetch) pages before the user initiates navigation; and [configurable rendering](/docs/page-options) that allows you to render your app [on the server](/docs/appendix#ssr) or [in the browser](/docs/appendix#csr-and-spa) at runtime or [at build-time](/docs/appendix#prerendering). SvelteKit does all the boring stuff for you so that you can get on with the creative part. It uses [Vite](https://vitejs.dev/) with a [Svelte plugin](https://github.com/sveltejs/vite-plugin-svelte) to provide a lightning-fast and feature-rich development experience with [Hot Module Replacement (HMR)](https://github.com/sveltejs/vite-plugin-svelte/blob/main/docs/config.md#hot), where changes to your code are reflected in the browser instantly. diff --git a/documentation/docs/01-project-structure.md b/documentation/docs/01-project-structure.md index 5d89563a1ef3..5bd0938334a6 100644 --- a/documentation/docs/01-project-structure.md +++ b/documentation/docs/01-project-structure.md @@ -40,7 +40,7 @@ The `src` directory contains the meat of your project. - `app.html` is your page template — an HTML document containing the following placeholders: - `%sveltekit.head%` — `` and `