import mdx from "@astrojs/mdx" import react from "@astrojs/react" import sitemap from "@astrojs/sitemap" import { pluginCollapsibleSections } from "@expressive-code/plugin-collapsible-sections" import { pluginLineNumbers } from "@expressive-code/plugin-line-numbers" import tailwindcss from "@tailwindcss/vite" import expressiveCode from "astro-expressive-code" import { defineConfig } from "astro/config" import robotsTxt from "astro-robots-txt" import addClasses from "rehype-class-names" import og from "astro-og"; import bun from "@hedystia/astro-bun"; // https://astro.build/config export default defineConfig({ adapter: bun(), output: "server", prefetch: true, server: { allowedHosts: ['callisto', 'callisto.end-fahrenheit.ts.net'] }, site: "https://lio.cat", markdown: { remarkRehype: {}, rehypePlugins: [ [ addClasses, { a: 'markdown-link'} ], ], }, vite: { plugins: [tailwindcss()], server: { allowedHosts: true, }, }, integrations: [react(), sitemap(), expressiveCode({ plugins: [pluginCollapsibleSections(), pluginLineNumbers()], themes: ["material-theme-lighter", "material-theme-darker"], defaultProps: { showLineNumbers: true, }, }), mdx({}), robotsTxt(), og()], })