37 lines
No EOL
730 B
JavaScript
37 lines
No EOL
730 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
import mdx from '@astrojs/mdx';
|
|
|
|
|
|
import cloudflare from '@astrojs/cloudflare';
|
|
import remarkMath from "remark-math";
|
|
import rehypeKatex from "rehype-katex";
|
|
|
|
export default defineConfig({
|
|
site: 'https://terminal-blog.example.com',
|
|
base: '/',
|
|
trailingSlash: 'ignore',
|
|
redirects: {
|
|
// for the old routes still can be accessed
|
|
"/post/[...slug]": "/blog/[...slug]"
|
|
},
|
|
|
|
build: {
|
|
format: 'directory'
|
|
},
|
|
|
|
markdown: {
|
|
shikiConfig: {
|
|
theme: 'nord',
|
|
wrap: true
|
|
},
|
|
remarkPlugins: [ remarkMath ],
|
|
rehypePlugins: [ rehypeKatex ]
|
|
},
|
|
|
|
integrations: [sitemap(), mdx()],
|
|
|
|
adapter: cloudflare()
|
|
}); |