Update README.md with project setup, development instructions, environment variables, and build process for Svelte 5 and SvelteKit integration.

This commit is contained in:
eewing
2026-02-24 09:12:30 -06:00
parent 96b6999523
commit eb18419089
29 changed files with 1386 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<script lang="ts">
import favicon from '$lib/assets/favicon.svg';
import './layout.css';
let { children } = $props();
</script>
<svelte:head>
<link rel="icon" href={favicon} />
</svelte:head>
{@render children()}