trepa-web/astro.config.mjs

13 lines
259 B
JavaScript
Raw Normal View History

2024-05-17 11:45:32 +02:00
// astro.config.mjs
import { defineConfig } from "astro/config";
import react from "@astrojs/react";
import node from "@astrojs/node";
export default defineConfig({
integrations: [react()],
output: "server",
adapter: node({
mode: "standalone",
}),
});