summaryrefslogtreecommitdiff
path: root/astro.config.mjs
blob: 9bf62514d5d277664b798bcbd1571d328af22687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { defineConfig } from "astro/config";
import tailwind from "@astrojs/tailwind";

import node from "@astrojs/node";

// https://astro.build/config
export default defineConfig({
  integrations: [tailwind()],
  output: "server",
  adapter: node({
    mode: "standalone",
  }),
});