From be61085b09df6711c94735bcdc5ac2f29e8a90d5 Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Fri, 30 Jun 2023 13:24:30 +0000 Subject: [PATCH] chore(*): Add base sveltekit app files --- src/app.d.ts | 12 ++++++++++++ src/app.html | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 src/app.d.ts create mode 100644 src/app.html diff --git a/src/app.d.ts b/src/app.d.ts new file mode 100644 index 0000000..f59b884 --- /dev/null +++ b/src/app.d.ts @@ -0,0 +1,12 @@ +// See https://kit.svelte.dev/docs/types#app +// for information about these interfaces +declare global { + namespace App { + // interface Error {} + // interface Locals {} + // interface PageData {} + // interface Platform {} + } +} + +export {}; diff --git a/src/app.html b/src/app.html new file mode 100644 index 0000000..effe0d0 --- /dev/null +++ b/src/app.html @@ -0,0 +1,12 @@ + + + + + + + %sveltekit.head% + + +
%sveltekit.body%
+ +