Skip to content
Open
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ up:
@docker compose up --detach

down:
@docker compose down
@docker compose --profile "*" down

shell: up
@docker compose exec $(CONTAINER) bash
Expand Down
7 changes: 6 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 @@ -32,6 +33,7 @@ export default defineConfig({
host: true,
},

compressHTML: true,
redirects: {
"/daf/overview/": "/daf/",
// Move old services URLs to new ones.
Expand All @@ -51,8 +53,11 @@ export default defineConfig({
},
},

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