grain.social is a photo sharing platform built on atproto. grain.social
atproto photography appview
48
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 22 lines 379 B view raw
1import adapter from "@sveltejs/adapter-node"; 2 3export default { 4 compilerOptions: { 5 experimental: { 6 async: true, 7 }, 8 }, 9 kit: { 10 adapter: adapter(), 11 files: { 12 src: "app", 13 }, 14 alias: { 15 $hatk: "./hatk.generated.ts", 16 "$hatk/client": "./hatk.generated.client.ts", 17 }, 18 experimental: { 19 remoteFunctions: true, 20 }, 21 }, 22};