redirects for legacy URLs
This commit is contained in:
parent
47b5c923b7
commit
3242c3bc77
|
@ -0,0 +1,5 @@
|
||||||
|
import { redirect } from '@sveltejs/kit';
|
||||||
|
|
||||||
|
export function load() {
|
||||||
|
throw redirect(307, '/thoughts');
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
import { redirect } from '@sveltejs/kit';
|
||||||
|
|
||||||
|
export function load() {
|
||||||
|
throw redirect(307, '/projects');
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
import { redirect } from '@sveltejs/kit';
|
||||||
|
|
||||||
|
export function load() {
|
||||||
|
throw redirect(307, '/poetry');
|
||||||
|
}
|
Loading…
Reference in New Issue