nicco.io/astro.config.mjs

17 lines
416 B
JavaScript
Raw Normal View History

2024-11-21 23:42:48 +00:00
// @ts-check
import { defineConfig } from 'astro/config'
import mdx from '@astrojs/mdx'
import sitemap from '@astrojs/sitemap'
import { remarkReadingTime } from './readingTime'
2024-11-22 00:19:50 +00:00
import svelte from '@astrojs/svelte';
2024-11-21 23:42:48 +00:00
// https://astro.build/config
export default defineConfig({
site: 'https://example.com',
2024-11-22 00:19:50 +00:00
integrations: [mdx(), sitemap(), svelte()],
2024-11-21 23:42:48 +00:00
markdown: {
remarkPlugins: [remarkReadingTime],
},
2024-11-22 00:19:50 +00:00
})