From a6b0f00e53faef150c1ba27665d923b5e01ddb3b Mon Sep 17 00:00:00 2001 From: Bjorn Lu Date: Wed, 27 Jul 2022 00:23:40 +0800 Subject: [PATCH] [docs] update vite ssr repro template (#5713) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 650d03394838..795f66690a72 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Check out the [Migration Guide](https://kit.svelte.dev/docs/migrating) if you ar ## Bug reporting -Please make sure the issue you're reporting involves SvelteKit. Many issues related to how a project builds originate from [Vite](https://vitejs.dev/), which is used to build a SvelteKit project. It's important to note that new Vite projects don't use SSR by default, and so if you create a new Vite project from scratch, many issues won't reproduce. You should thus start with a project that utilizes SSR, such as [`vite-plugin-svelte`'s SSR example](https://github.com/sveltejs/vite-plugin-svelte/tree/main/packages/e2e-tests/vite-ssr-esm). +Please make sure the issue you're reporting involves SvelteKit. Many issues related to how a project builds originate from [Vite](https://vitejs.dev/), which is used to build a SvelteKit project. It's important to note that new Vite projects don't use SSR by default, and so if you create a new Vite project from scratch, many issues won't reproduce. You should thus start with a project that utilizes SSR, such as `npm create vite-extra@latest -- --template ssr-svelte`. If an issue originates from Vite, please report in the [Vite issue tracker](https://github.com/vitejs/vite/issues).