// @ts-check import { defineConfig } from "astro/config"; import react from "@astrojs/react"; import node from "@astrojs/node"; // https://astro.build/config export default defineConfig({ integrations: [react()], output: "server", server: { host: "0.0.0.0", }, adapter: node({ mode: "standalone", }), });