mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
18 lines
452 B
JavaScript
18 lines
452 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import preact from "@astrojs/preact";
|
|
import react from "@astrojs/react";
|
|
|
|
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://nh.outerwildsmods.com`
|
|
});
|