Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,14 @@ pnpm-debug.log*
generated/*.json
src/content/docs/*.mdx
src/content/docs/*.md
src/content/docs/*.png
src/content/*
!src/content/docs/
src/content/docs/*.mdx
src/content/docs/**/*.md
src/content/docs/**/*.mdx
src/content/docs/**/*.png
!src/content/docs/index.mdx
!src/content/docs/general.mdx
public/json-schema/**/*.json
public/json-schema/**/*.yaml
public/llms.txt
7 changes: 2 additions & 5 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import * as fs from "fs";
import rehypeMermaid from "rehype-mermaid";
import astroMermaid from "./src/plugins/astro-mermaid.js";
import starlightBlog from "starlight-blog";
import tailwindcss from "@tailwindcss/vite";

Expand Down Expand Up @@ -133,11 +133,8 @@ export default defineConfig({
site: "https://aep.dev",
redirects: redirects,

markdown: {
rehypePlugins: [[rehypeMermaid, { dark: true }]],
},

integrations: [
astroMermaid(),
starlight({
title: "AEP",
customCss: [
Expand Down
Loading