firq-dev-website/astro.config.mjs

15 lines
379 B
JavaScript
Raw Normal View History

2023-01-15 16:53:19 +00:00
import { defineConfig } from 'astro/config';
2024-11-01 14:43:20 +00:00
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
2024-10-27 13:58:32 +00:00
import astroMetaTags from "astro-meta-tags";
2023-12-29 17:24:44 +00:00
2023-01-15 16:53:19 +00:00
// https://astro.build/config
export default defineConfig({
sitemap: true,
base: '/',
2023-12-20 23:22:04 +00:00
outDir: 'dist',
2024-10-26 20:41:24 +00:00
publicDir: 'public',
site: 'https://firq.dev/',
2024-10-27 13:58:32 +00:00
integrations: [sitemap(), mdx(), astroMetaTags()]
});