29 lines
616 B
JavaScript
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"] },
|
|
],
|
|
],
|
|
},
|
|
});
|