this repo has no description
0
fork

Configure Feed

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

at main 15 lines 260 B view raw
1// @ts-check 2import { defineConfig } from "astro/config"; 3import node from "@astrojs/node"; 4 5// https://astro.build/config 6export default defineConfig({ 7 adapter: node({ 8 mode: "standalone", 9 }), 10 11 server: { 12 host: "0.0.0.0", 13 port: 4321, 14 }, 15});