You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
465 B
17 lines
465 B
import { defineConfig } from "astro/config";
|
|
import preact from "@astrojs/preact";
|
|
import react from "@astrojs/react";
|
|
|
|
// https://astro.build/config
|
|
import mdx from "@astrojs/mdx";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
// Enable Preact to support Preact JSX components.
|
|
preact(),
|
|
// Enable React for the Algolia search component.
|
|
react(), mdx()],
|
|
site: "https://Facinorous-420.github.io",
|
|
base: "/dick-docs"
|
|
}); |