From 85b69ea89fbd08c3019f32b57a284337b6555cad Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Fri, 20 Oct 2023 14:08:54 -0500 Subject: uh Signed-off-by: Matt Strapp --- app/.gitignore | 3 +- app/src/lib/components/Navigation.svelte | 70 ++++++++++++++++++++++++++++++ app/src/lib/components/ReloadPrompt.svelte | 32 ++++++++++++++ app/src/lib/svelte/Navigation.svelte | 70 ------------------------------ app/src/lib/svelte/ReloadPrompt.svelte | 32 -------------- app/src/routes/+layout.svelte | 8 ++-- app/svelte.config.js | 3 -- 7 files changed, 108 insertions(+), 110 deletions(-) create mode 100644 app/src/lib/components/Navigation.svelte create mode 100644 app/src/lib/components/ReloadPrompt.svelte delete mode 100644 app/src/lib/svelte/Navigation.svelte delete mode 100644 app/src/lib/svelte/ReloadPrompt.svelte (limited to 'app') diff --git a/app/.gitignore b/app/.gitignore index ef995c0..b8f5758 100644 --- a/app/.gitignore +++ b/app/.gitignore @@ -3,9 +3,10 @@ node_modules /build /.svelte-kit /package -/dev-dist .env .env.* !.env.example vite.config.js.timestamp-* vite.config.ts.timestamp-* + +/dev-dist \ No newline at end of file diff --git a/app/src/lib/components/Navigation.svelte b/app/src/lib/components/Navigation.svelte new file mode 100644 index 0000000..2e5ba98 --- /dev/null +++ b/app/src/lib/components/Navigation.svelte @@ -0,0 +1,70 @@ + + + + + {#if menu} + + + + + Close Menu + + {/if} + + + + + + Home! + + + + + + Truncate! + + + + + + + Source! + + + diff --git a/app/src/lib/components/ReloadPrompt.svelte b/app/src/lib/components/ReloadPrompt.svelte new file mode 100644 index 0000000..e6effbb --- /dev/null +++ b/app/src/lib/components/ReloadPrompt.svelte @@ -0,0 +1,32 @@ + diff --git a/app/src/lib/svelte/Navigation.svelte b/app/src/lib/svelte/Navigation.svelte deleted file mode 100644 index 2e5ba98..0000000 --- a/app/src/lib/svelte/Navigation.svelte +++ /dev/null @@ -1,70 +0,0 @@ - - - - - {#if menu} - - - - - Close Menu - - {/if} - - - - - - Home! - - - - - - Truncate! - - - - - - - Source! - - - diff --git a/app/src/lib/svelte/ReloadPrompt.svelte b/app/src/lib/svelte/ReloadPrompt.svelte deleted file mode 100644 index e6effbb..0000000 --- a/app/src/lib/svelte/ReloadPrompt.svelte +++ /dev/null @@ -1,32 +0,0 @@ - diff --git a/app/src/routes/+layout.svelte b/app/src/routes/+layout.svelte index 034ac0e..52385fc 100644 --- a/app/src/routes/+layout.svelte +++ b/app/src/routes/+layout.svelte @@ -1,5 +1,5 @@ - {@html webManifestLink} + {@html webManifest} @@ -64,6 +64,6 @@ -{#await import('$lib/svelte/ReloadPrompt.svelte') then { default: ReloadPrompt }} +{#await import('$lib/components/ReloadPrompt.svelte') then { default: ReloadPrompt }} {/await} diff --git a/app/svelte.config.js b/app/svelte.config.js index 722e99b..9484cb8 100644 --- a/app/svelte.config.js +++ b/app/svelte.config.js @@ -9,9 +9,6 @@ const config = { preprocess: [vitePreprocess()], kit: { - // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. - // If your environment is not supported or you settled on a specific environment, switch out the adapter. - // See https://kit.svelte.dev/docs/adapters for more information about adapters. adapter: adapter(), }, } -- cgit v1.2.3