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";
|
|
|
|
|
2024-07-01 21:58:06 +02:00
|
|
|
// https://astro.build/config
|
2024-05-17 11:45:32 +02:00
|
|
|
export default defineConfig({
|
|
|
|
integrations: [react()],
|
|
|
|
output: "server",
|
|
|
|
adapter: node({
|
|
|
|
mode: "standalone",
|
|
|
|
}),
|
|
|
|
});
|