revert: add markdoc integration

This reverts commit 9054ef309a.
This commit is contained in:
Oliver Davies 2023-06-28 00:08:08 +01:00
parent a44c5bf0b8
commit 7d361057f4
3 changed files with 236 additions and 318 deletions

View file

@ -2,27 +2,31 @@ import { defineConfig } from "astro/config";
import alpinejs from "@astrojs/alpinejs";
import tailwind from "@astrojs/tailwind";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
import compress from "astro-compress";
// https://astro.build/config
import markdoc from "@astrojs/markdoc";
import compress from "astro-compress";
// https://astro.build/config
export default defineConfig({
compressHTML: true,
integrations: [alpinejs(), mdx(), sitemap({
serialize(item) {
// To prevent crawling errors, remove the trailing slash from the URL
// otherwise it will be a link to a redirect URL and not the content.
item.url = item.url.replace(/\/$/, "");
return item;
}
}), tailwind({
config: {
applyBaseStyles: false
}
}), markdoc()],
integrations: [
alpinejs(),
mdx(),
sitemap({
serialize(item) {
// To prevent crawling errors, remove the trailing slash from the URL
// otherwise it will be a link to a redirect URL and not the content.
item.url = item.url.replace(/\/$/, "");
return item;
}
}),
tailwind({
config: {
applyBaseStyles: false
}
}),
],
site: "https://www.oliverdavies.uk"
});
});