Statusphere, but in atcute and SvelteKit
atproto
svelte
sveltekit
drizzle
atcute
typescript
1import adapter from '@sveltejs/adapter-node';
2import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
3
4/** @type {import('@sveltejs/kit').Config} */
5const config = {
6 // Consult https://svelte.dev/docs/kit/integrations
7 // for more information about preprocessors
8 preprocess: vitePreprocess(),
9
10 compilerOptions: {
11 experimental: {
12 async: true,
13 },
14 },
15
16 kit: {
17 // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
18 // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
19 // See https://svelte.dev/docs/kit/adapters for more information about adapters.
20 adapter: adapter(),
21 experimental: {
22 remoteFunctions: true,
23 },
24 },
25};
26
27export default config;