firq-dev-website/astro.config.mjs
Firq-ow 298b91262e
All checks were successful
Linting and checking code / get-version (push) Successful in 5s
Linting and checking code / astro-check (push) Successful in 13s
Bumped astro, need to migrate content collections
2025-01-15 15:22:29 +01:00

18 lines
No EOL
418 B
JavaScript

import { defineConfig } from 'astro/config';
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
import astroMetaTags from "astro-meta-tags";
// https://astro.build/config
export default defineConfig({
sitemap: true,
base: '/',
outDir: 'dist',
publicDir: 'public',
site: 'https://firq.dev/',
integrations: [sitemap(), mdx(), astroMetaTags()],
legacy: {
collections: true
}
});