mirror of
https://github.com/Xevion/undefined.behavio.rs.git
synced 2025-12-07 16:09:03 -06:00
26 lines
847 B
JavaScript
26 lines
847 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import tailwind from "@astrojs/tailwind";
|
|
import sitemap from "@astrojs/sitemap";
|
|
import robotsTxt from "astro-robots-txt";
|
|
|
|
import mdx from "@astrojs/mdx";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: 'https://undefined.behavio.rs',
|
|
prefetch: true,
|
|
integrations: [tailwind(), sitemap(), robotsTxt(), mdx()],
|
|
markdown: {
|
|
shikiConfig: {
|
|
// Choose from Shiki's built-in themes (or add your own)
|
|
// https://github.com/shikijs/shiki/blob/main/docs/themes.md
|
|
theme: 'github-dark',
|
|
// Add custom languages
|
|
// Note: Shiki has countless langs built-in, including .astro!
|
|
// https://github.com/shikijs/shiki/blob/main/docs/languages.md
|
|
langs: [],
|
|
// Enable word wrap to prevent horizontal scrolling
|
|
wrap: true
|
|
}
|
|
}
|
|
}); |