···33/** @type {import('@sveltejs/kit').Config} */
44const config = {
55 kit: {
66- // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
77- // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
88- // See https://svelte.dev/docs/kit/adapters for more information about adapters.
96 adapter: adapter(),
107 alias: {
1111- $lib: "src/lib",
88+ // $lib: "src/lib",
129 },
1310 env: {
1411 publicPrefix: "PUBLIC",
-5
tsconfig.json
···1313 "moduleResolution": "bundler",
1414 "types": ["@atcute/bluesky"],
1515 },
1616- // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
1717- // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
1818- //
1919- // To make changes to top-level options such as include and exclude, we recommend extending
2020- // the generated config; see https://svelte.dev/docs/kit/configuration#typescript
2116}