Files
rf4-spotter/apps/web/astro.config.mjs
T
ik 494a37ce8f
CI / backend-and-migrations (push) Canceled after 0s
CI / astro-build (push) Canceled after 0s
CI / compose-e2e (push) Canceled after 0s
feat: establish public SEO foundation
2026-09-07 13:29:13 +07:00

10 lines
277 B
JavaScript

import { defineConfig } from "astro/config";
import node from "@astrojs/node";
export default defineConfig({
site: process.env.PUBLIC_SITE_URL || "https://rf4spotter.ru",
output: "server",
adapter: node({ mode: "standalone" }),
server: { host: true, port: 4321 },
});