mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 20:15:27 +00:00
21 lines
511 B
JavaScript
21 lines
511 B
JavaScript
import mdx from '@astrojs/mdx';
|
|
import preact from '@astrojs/preact';
|
|
import tailwind from '@astrojs/tailwind';
|
|
import { astroImageTools } from 'astro-imagetools';
|
|
import { remarkReadingTime } from './src/utils';
|
|
|
|
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(), astroImageTools],
|
|
});
|