Documentation site of NextGraph.org
https://docs.nextgraph.org
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.
16 lines
449 B
16 lines
449 B
import { defineConfig } from 'astro/config';
|
|
import preact from '@astrojs/preact';
|
|
import react from '@astrojs/react';
|
|
|
|
// https://astro.build/config
|
|
import sitemap from "@astrojs/sitemap";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
// Enable Preact to support Preact JSX components.
|
|
preact(),
|
|
// Enable React for the Algolia search component.
|
|
react(), sitemap()],
|
|
site: `https://docs.nextgraph.org`
|
|
}); |