-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathastro.config.mjs
More file actions
28 lines (27 loc) · 784 Bytes
/
astro.config.mjs
File metadata and controls
28 lines (27 loc) · 784 Bytes
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
import { defineConfig } from 'astro/config'
import tailwind from '@astrojs/tailwind'
import mdx from '@astrojs/mdx'
import react from '@astrojs/react'
import expressiveCode from 'astro-expressive-code'
// https://astro.build/config
export default defineConfig({
integrations: [
tailwind(),
expressiveCode({
themes: ['github-dark', 'github-light'],
styleOverrides: {
frames: {
editorActiveTabIndicatorTopColor: 'transparent',
editorActiveTabBorderColor: '#80808080',
editorTabBarBorderBottomColor: '#80808080',
tooltipSuccessBackground: 'black'
},
uiFontFamily: 'inherit',
borderColor: '#80808080'
}
}),
mdx(),
react()
],
site: 'https://astro-minimal.netlify.app/'
})