diff options
feat: new things
Diffstat (limited to 'src/routes/skip-animation')
-rw-r--r-- | src/routes/skip-animation/+page.svelte | 5 | ||||
-rw-r--r-- | src/routes/skip-animation/+page.ts | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/routes/skip-animation/+page.svelte b/src/routes/skip-animation/+page.svelte new file mode 100644 index 0000000..d657b03 --- /dev/null +++ b/src/routes/skip-animation/+page.svelte @@ -0,0 +1,5 @@ +<script lang="ts"> + import Page from "../+page.svelte"; +</script> + +<Page skipAnimation /> diff --git a/src/routes/skip-animation/+page.ts b/src/routes/skip-animation/+page.ts new file mode 100644 index 0000000..844f519 --- /dev/null +++ b/src/routes/skip-animation/+page.ts @@ -0,0 +1 @@ +export const trailingSlash = 'never'; |