lbry-tech/astro.config.mjs

15 lines
408 B
JavaScript
Raw Normal View History

2023-12-04 18:52:18 +00:00
import { defineConfig } from 'astro/config';
import codeblocks from "@thewebforge/astro-code-blocks";
import preload from "astro-preload";
import mdx from "@astrojs/mdx";
// https://astro.build/config
export default defineConfig({
prefetch: true,
integrations: [preload(), codeblocks({
// Copy Button Options
copyButtonTitle: 'Copy',
copyButtonTooltip: 'Copied to clipboard',
}), mdx()]
});