Skip to content

Commit 59a70de

Browse files
committed
Sync with my opinionated tweaks
1 parent 001a9a0 commit 59a70de

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

src/app.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<title>Untitled SvelteKit app</title>
65
<link rel="icon" href="%sveltekit.assets%/favicon.png">
76
<meta name="viewport" content="width=device-width, initial-scale=1">
87
<style>

src/routes/+layout.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// you may want to disable ssr
2+
// export const ssr = false

src/routes/+layout.svelte

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1+
<svelte:head>
2+
<title>Untitled SvelteKit app</title>
3+
</svelte:head>
4+
15
<slot></slot>

tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"extends": "./.svelte-kit/tsconfig.json",
3+
// see the original compilerOptions included in the official template in
4+
// tsconfigs/tsconfig.app.json
35
"references": [
46
{ "path": "./tsconfigs/tsconfig.app.json" },
57
{ "path": "./tsconfigs/tsconfig.vitest.json" },

0 commit comments

Comments
 (0)