Files
website/astro.config.mjs

13 lines
316 B
JavaScript
Raw Permalink Normal View History

2024-12-06 21:56:46 +00:00
// @ts-check
2024-12-06 23:43:15 +00:00
import { defineConfig } from "astro/config";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
2024-12-06 21:56:46 +00:00
2024-12-06 23:43:15 +00:00
import tailwind from "@astrojs/tailwind";
2024-12-06 22:51:10 +00:00
2024-12-06 21:56:46 +00:00
// https://astro.build/config
export default defineConfig({
2024-12-06 23:43:15 +00:00
site: "https://athenlab.com",
integrations: [mdx(), sitemap(), tailwind()],
});