fix: problems in essays

This commit is contained in:
Stefan Imhoff
2023-06-07 13:09:32 +02:00
parent 199448e4ce
commit 20a0a747f3
30 changed files with 144 additions and 462 deletions

View File

@@ -9,12 +9,18 @@ import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
markdown: {
remarkPlugins: [remarkReadingTime],
shikiConfig: {
theme: 'nord',
langs: [],
wrap: true,
},
},
integrations: [mdx(), tailwind(), preact({ compat: true }), astroImageTools],
integrations: [
mdx({
remarkPlugins: [remarkReadingTime],
}),
tailwind(),
preact({ compat: true }),
astroImageTools,
],
});