-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.ts
More file actions
115 lines (110 loc) · 3.42 KB
/
Copy pathastro.config.ts
File metadata and controls
115 lines (110 loc) · 3.42 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import { defineConfig } from 'astro/config'
import mdx from '@astrojs/mdx'
import react from '@astrojs/react'
import sitemap from '@astrojs/sitemap'
import icon from 'astro-icon'
import { rehypeHeadingIds } from '@astrojs/markdown-remark'
import rehypeExpressiveCode from 'rehype-expressive-code'
import rehypeExternalLinks from 'rehype-external-links'
import rehypeKatex from 'rehype-katex'
import rehypeShiki from '@shikijs/rehype'
import remarkEmoji from 'remark-emoji'
import remarkMath from 'remark-math'
import { remarkPdfEmbed } from './src/lib/remark-pdf-embed'
import { pluginCollapsibleSections } from '@expressive-code/plugin-collapsible-sections'
import { pluginLineNumbers } from '@expressive-code/plugin-line-numbers'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
site: 'https://astro-erudite.vercel.app',
image: {
service: {
entrypoint: 'astro/assets/services/noop',
},
},
integrations: [
mdx({
remarkPlugins: [remarkPdfEmbed],
}),
react(),
sitemap(),
icon(),
],
vite: {
plugins: [tailwindcss()],
},
server: {
port: 1234,
host: true,
},
devToolbar: {
enabled: false,
},
markdown: {
syntaxHighlight: false,
rehypePlugins: [
[
rehypeExternalLinks,
{
target: '_blank',
rel: ['nofollow', 'noreferrer', 'noopener'],
},
],
rehypeHeadingIds,
rehypeKatex,
[
rehypeExpressiveCode,
{
themes: ['github-dark'],
plugins: [pluginCollapsibleSections(), pluginLineNumbers()],
useDarkModeMediaQuery: false,
themeCssSelector: () => '.expressive-code',
defaultProps: {
wrap: true,
collapseStyle: 'collapsible-auto',
overridesByLang: {
'ansi,bat,bash,batch,cmd,console,powershell,ps,ps1,psd1,psm1,sh,shell,shellscript,shellsession,text,zsh':
{
showLineNumbers: false,
},
},
},
styleOverrides: {
codeFontSize: '0.75rem',
borderColor: 'var(--code-block-border)',
codeFontFamily: 'var(--font-mono)',
codeBackground: 'var(--code-block-bg)',
frames: {
editorActiveTabForeground: 'var(--code-block-foreground)',
editorActiveTabBackground: 'var(--code-block-bg)',
editorActiveTabIndicatorBottomColor: 'transparent',
editorActiveTabIndicatorTopColor: 'transparent',
editorTabBorderRadius: '0',
editorTabBarBackground: 'var(--code-block-bg)',
editorTabBarBorderBottomColor: 'var(--code-block-border)',
frameBoxShadowCssValue: 'none',
terminalBackground: 'var(--code-block-bg)',
terminalTitlebarBackground: 'var(--code-block-bg)',
terminalTitlebarBorderBottomColor: 'var(--code-block-border)',
terminalTitlebarForeground: 'var(--muted-foreground)',
},
lineNumbers: {
foreground: 'var(--muted-foreground)',
},
uiFontFamily: 'var(--font-sans)',
},
},
],
[
rehypeShiki,
{
themes: {
light: 'github-dark',
dark: 'github-dark',
},
inline: 'tailing-curly-colon',
},
],
],
remarkPlugins: [remarkMath, remarkEmoji],
},
})