Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
9 changes: 8 additions & 1 deletion astro/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { defineConfig } from "astro/config";
import { unified } from '@astrojs/markdown-remark';
import styleGuide from "./style-guide/register.js";

import icon from "astro-icon";
Expand Down Expand Up @@ -45,14 +46,20 @@ export default defineConfig({
"/useable": "https://accessiblecommunity.github.io/useable/",
},

markdown: {
processor: unified(),
},

vite: {
ssr: {
noExternal: ["bootstrap"],
},
},

integrations: [
mdx(),
mdx({
processor: unified(),
}),
styleGuide(),
icon({
include: {
Expand Down
Loading
Loading