-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
42 lines (40 loc) · 1.19 KB
/
astro.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import tailwind from '@astrojs/tailwind';
import svelte from '@astrojs/svelte';
import a11yEmoji from '@fec/remark-a11y-emoji';
import mdx from '@astrojs/mdx';
import { remarkReadingTime } from './plugins/markdown/readingTime.mjs';
import vue from '@astrojs/vue';
// https://astro.build/config
export default defineConfig({
integrations: [
react(),
tailwind({
applyBaseStyles: false,
}),
svelte(),
mdx({
rehypePlugins: [a11yEmoji],
remarkPlugins: [remarkReadingTime],
}),
vue(),
],
markdown: {
rehypePlugins: [a11yEmoji],
remarkPlugins: [remarkReadingTime],
shikiConfig: {
// Choose from Shiki's built-in themes (or add your own)
// https://github.com/shikijs/shiki/blob/main/docs/themes.md
theme: 'dracula',
// Add custom languages
// Note: Shiki has countless langs built-in, including .astro!
// https://github.com/shikijs/shiki/blob/main/docs/languages.md
langs: [],
// Enable word wrap to prevent horizontal scrolling
wrap: true,
},
extendDefaultPlugins: true,
},
site: 'https://regibyte.github.io',
});