mirror of
https://github.com/LBRYFoundation/lbry-tech.git
synced 2025-03-03 22:47:55 +00:00
15 lines
No EOL
408 B
JavaScript
15 lines
No EOL
408 B
JavaScript
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()]
|
|
}); |