Files
ncd-fe/packages/website/astro.config.mjs
nicole mikołajczyk ea295d58a4 initialize website
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
2026-03-07 18:54:40 +01:00

29 lines
616 B
JavaScript

// @ts-check
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
import { defineConfig } from "astro/config";
import rehypeExternalLinks from "rehype-external-links";
export default defineConfig({
site: "https://nicolium.app/",
integrations: [
mdx({
rehypePlugins: [
[
rehypeExternalLinks,
{ target: "_blank", rel: ["noopener", "noreferrer"] },
],
],
}),
sitemap(),
],
markdown: {
rehypePlugins: [
[
rehypeExternalLinks,
{ target: "_blank", rel: ["noopener", "noreferrer"] },
],
],
},
});