init
This commit is contained in:
6
client/src/routes/+layout.svelte
Normal file
6
client/src/routes/+layout.svelte
Normal file
@ -0,0 +1,6 @@
|
||||
<script>
|
||||
let { children } = $props();
|
||||
import '../app.css';
|
||||
</script>
|
||||
|
||||
{@render children()}
|
2
client/src/routes/+layout.ts
Normal file
2
client/src/routes/+layout.ts
Normal file
@ -0,0 +1,2 @@
|
||||
export const prerender = true;
|
||||
export const ssr = false;
|
2
client/src/routes/+page.svelte
Normal file
2
client/src/routes/+page.svelte
Normal file
@ -0,0 +1,2 @@
|
||||
<h1>Welcome to SvelteKit</h1>
|
||||
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
|
Reference in New Issue
Block a user