AstralHalo/astro.config.mjs

102 lines
3.2 KiB
JavaScript

// @ts-check
import { CDN } from './src/constants/cdn.mjs';
import { rehypeComponentsList } from './src/plugins/rehype-components-list.ts';
import { rehypePrettierCodes } from './src/plugins/rehype-prettier-codes.ts';
import { rehypeWrapTables } from './src/plugins/rehype-wrap-tables.ts';
import { remarkArticleReferences } from './src/plugins/remark-article-references';
import { remarkCreateTime } from './src/plugins/remark-create-time.ts';
import { remarkExcerpt } from './src/plugins/remark-excerpt.ts';
import { remarkGithubBlockquote } from './src/plugins/remark-github-blockquote.ts';
// import { remarkHeadingShift } from './src/plugins/remark-heading-shift.ts';
import { remarkImageProcess } from './src/plugins/remark-image-process.ts';
import { remarkReadingTime } from './src/plugins/remark-reading-time.ts';
import { wrapCode } from './src/plugins/shiki-transformers.ts';
import { rehypeHeadingIds } from '@astrojs/markdown-remark';
import mdx from '@astrojs/mdx';
import sitemap from '@astrojs/sitemap';
import vue from '@astrojs/vue';
// import { transformerNotationDiff } from '@shikijs/transformers';
// import { transformerNotationHighlight } from '@shikijs/transformers';
import tailwindcss from '@tailwindcss/vite';
import icon from 'astro-icon';
import pagefind from 'astro-pagefind';
import { defineConfig } from 'astro/config';
import rehypeAutolinkHeadings from 'rehype-autolink-headings';
import rehypeComponents from 'rehype-components';
import rehypeMathJaxCHtml from 'rehype-mathjax/chtml';
import remarkDirective from 'remark-directive';
import remarkDirectiveRehype from 'remark-directive-rehype';
import remarkMath from 'remark-math';
// https://astro.build/config
export default defineConfig({
site: 'https://astral-halo.netlify.app/',
base: '/',
output: 'static',
trailingSlash: 'ignore',
integrations: [
icon(),
sitemap({ filter: (page) => !page.includes('/archives/') && !page.includes('/about/') }),
pagefind(),
mdx(),
vue(),
],
markdown: {
shikiConfig: {
themes: {
light: 'one-light',
dark: 'one-dark-pro',
},
defaultColor: false,
transformers: [
// transformerNotationDiff(),
// transformerNotationHighlight(),
wrapCode(),
],
},
remarkPlugins: [
// remarkHeadingShift,
remarkMath,
remarkDirective,
// @ts-expect-error Types of the plugin are not correct
remarkDirectiveRehype,
remarkCreateTime,
remarkReadingTime,
remarkExcerpt,
remarkImageProcess,
remarkGithubBlockquote,
remarkArticleReferences,
],
rehypePlugins: [
rehypeHeadingIds,
[
rehypeAutolinkHeadings,
{
behavior: 'append',
content: {
type: 'text',
value: '#',
},
properties: {
'aria-label': 'Anchor link',
},
},
],
[
rehypeMathJaxCHtml,
{
chtml: {
fontURL: CDN.mathjaxFont,
},
},
],
rehypeWrapTables,
rehypePrettierCodes,
[rehypeComponents, { components: rehypeComponentsList }],
],
},
vite: {
plugins: [tailwindcss()],
},
});