···4949 <meta name="description" content="tracks bluesky events by collection" />
5050</svelte:head>
51515252-<div class="max-w-[50vw] mx-auto p-2">
5252+<div class="max-w-[66vw] mx-auto p-2">
5353 <header class="text-center mb-8">
5454 <h1 class="text-4xl font-bold mb-2 text-gray-900">
5555 🦋 bluesky event tracker
5656 </h1>
5757 <p class="text-gray-600">
5858- real-time tracking of bluesky events by collection from the
5959- jetstream
5858+ tracking of bluesky events by collection from the jetstream
6059 </p>
6160 </header>
6261
+6-11
svelte.config.js
···11-import adapter from '@sveltejs/adapter-auto';
22-import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
11+import adapter from "svelte-adapter-bun";
22+import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
3344/** @type {import('@sveltejs/kit').Config} */
55const config = {
66- // Consult https://svelte.dev/docs/kit/integrations
77- // for more information about preprocessors
88- preprocess: vitePreprocess(),
66+ preprocess: vitePreprocess(),
971010- kit: {
1111- // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
1212- // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
1313- // See https://svelte.dev/docs/kit/adapters for more information about adapters.
1414- adapter: adapter()
1515- }
88+ kit: {
99+ adapter: adapter(),
1010+ },
1611};
17121813export default config;