bluesky client without react native baggage written in sveltekit
at main 13 lines 469 B view raw
1import adapter from '@sveltejs/adapter-auto'; 2 3/** @type {import('@sveltejs/kit').Config} */ 4const config = { 5 kit: { 6 // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list. 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 } 11}; 12 13export default config;