mirror of https://github.com/sveltejs/svelte
Update deps (#10245)
* bump deps * migrate * fix * downgrade jsdom/playwright * fix a type error * downgrade svelte * prettier * downgrade rollup * downgrade other deps * gah --------- Co-authored-by: Rich Harris <rich.harris@vercel.com>ttf-fix
parent
83628c901d
commit
7c70c346f8
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,5 @@
|
||||
import { redirect } from '@sveltejs/kit';
|
||||
|
||||
export function load() {
|
||||
throw redirect(307, '/docs/introduction');
|
||||
redirect(307, '/docs/introduction');
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { redirect } from '@sveltejs/kit';
|
||||
|
||||
export function load() {
|
||||
throw redirect(308, '/docs/faq');
|
||||
redirect(308, '/docs/faq');
|
||||
}
|
||||
|
@ -1,8 +1,5 @@
|
||||
import { redirect } from '@sveltejs/kit';
|
||||
|
||||
export function load() {
|
||||
throw redirect(
|
||||
307,
|
||||
'https://docs.google.com/document/d/1IA9Z5rcIm_KRxvh_L42d2NDdYRHZ72MfszhyJrsmf5A'
|
||||
);
|
||||
redirect(307, 'https://docs.google.com/document/d/1IA9Z5rcIm_KRxvh_L42d2NDdYRHZ72MfszhyJrsmf5A');
|
||||
}
|
||||
|
Loading…
Reference in new issue