Files
yt2rss/astro.config.mjs

19 lines
328 B
JavaScript

// @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",
}),
});