mirror of
https://github.com/lbr77/blog-astro.git
synced 2026-04-09 00:19:12 +00:00
Initial commit
This commit is contained in:
106
astro.config.ts
Normal file
106
astro.config.ts
Normal file
@@ -0,0 +1,106 @@
|
||||
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 expressiveCode from 'astro-expressive-code'
|
||||
import rehypeExternalLinks from 'rehype-external-links'
|
||||
import rehypeKatex from 'rehype-katex'
|
||||
import rehypePrettyCode from 'rehype-pretty-code'
|
||||
import remarkEmoji from 'remark-emoji'
|
||||
import remarkMath from 'remark-math'
|
||||
|
||||
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',
|
||||
integrations: [
|
||||
expressiveCode({
|
||||
themes: ['github-light', 'github-dark'],
|
||||
plugins: [pluginCollapsibleSections(), pluginLineNumbers()],
|
||||
useDarkModeMediaQuery: false,
|
||||
themeCssSelector: (theme) => `[data-theme="${theme.name.split('-')[1]}"]`,
|
||||
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(--border)',
|
||||
codeFontFamily: 'var(--font-mono)',
|
||||
codeBackground:
|
||||
'color-mix(in oklab, var(--muted) 25%, transparent)',
|
||||
frames: {
|
||||
editorActiveTabForeground: 'var(--muted-foreground)',
|
||||
editorActiveTabBackground:
|
||||
'color-mix(in oklab, var(--muted) 25%, transparent)',
|
||||
editorActiveTabIndicatorBottomColor: 'transparent',
|
||||
editorActiveTabIndicatorTopColor: 'transparent',
|
||||
editorTabBorderRadius: '0',
|
||||
editorTabBarBackground: 'transparent',
|
||||
editorTabBarBorderBottomColor: 'transparent',
|
||||
frameBoxShadowCssValue: 'none',
|
||||
terminalBackground:
|
||||
'color-mix(in oklab, var(--muted) 25%, transparent)',
|
||||
terminalTitlebarBackground: 'transparent',
|
||||
terminalTitlebarBorderBottomColor: 'transparent',
|
||||
terminalTitlebarForeground: 'var(--muted-foreground)',
|
||||
},
|
||||
lineNumbers: {
|
||||
foreground: 'var(--muted-foreground)',
|
||||
},
|
||||
uiFontFamily: 'var(--font-sans)',
|
||||
},
|
||||
}),
|
||||
mdx(),
|
||||
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,
|
||||
[
|
||||
rehypePrettyCode,
|
||||
{
|
||||
theme: {
|
||||
light: 'github-light',
|
||||
dark: 'github-dark',
|
||||
},
|
||||
},
|
||||
],
|
||||
],
|
||||
remarkPlugins: [remarkMath, remarkEmoji],
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user