Skip to content

Commit

Permalink
feat: create root page
Browse files Browse the repository at this point in the history
  • Loading branch information
triptu committed Oct 6, 2022
1 parent da65da4 commit 11f3359
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -12,4 +12,5 @@ A hello world app for Svelte + 100ms. Built with SvelteKit.
```

2. Delete everything inside the routes folder(apart from styles.css) - let's start clean.
3.
3. Svelte dev would stop here due to error. Create a +page.svelte file in routes with head and importing styles.
4.
8 changes: 8 additions & 0 deletions src/routes/+page.svelte
@@ -0,0 +1,8 @@
<script>
import './styles.css';
</script>

<svelte:head>
<title>100ms Svelte App</title>
<meta name="description" content="Svelte HMS World" />
</svelte:head>

0 comments on commit 11f3359

Please sign in to comment.