You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/sites/svelte.dev/src/routes/blog/the-easiest-way-to-get-started/+page.js

7 lines
147 B

import { redirect } from '@sveltejs/kit';
import { dev } from '$app/environment';
export function load() {
redirect(dev ? 307 : 308, '/docs');
}