···1-<h1>Welcome to SvelteKit</h1>
2-<p>
3- Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the
4- documentation
5-</p>
00000000000
···7 // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
8 // See https://svelte.dev/docs/kit/adapters for more information about adapters.
9 adapter: adapter(),
00010 },
11};
12
···7 // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
8 // See https://svelte.dev/docs/kit/adapters for more information about adapters.
9 adapter: adapter(),
10+ alias: {
11+ $lib: "src/lib",
12+ },
13 },
14};
15
+1
tsconfig.json
···11 "sourceMap": true,
12 "strict": true,
13 "moduleResolution": "bundler",
014 },
15 // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
16 // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
···11 "sourceMap": true,
12 "strict": true,
13 "moduleResolution": "bundler",
14+ "types": ["@atcute/bluesky"],
15 },
16 // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
17 // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files