aboutsummaryrefslogtreecommitdiff
path: root/examples/docs/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Nate Moore <natemoo-re@users.noreply.github.com> 2023-06-06 11:21:19 -0500
committerGravatar GitHub <noreply@github.com> 2023-06-06 11:21:19 -0500
commit5ed2a2f666707e579e18f2890ab89b7cc6f717c3 (patch)
tree9895d49bc5bd33a63ff0f2e94053e771a54b9dc4 /examples/docs/astro.config.mjs
parentd5a089810f8218f694ac56591648d36051708560 (diff)
downloadastro-5ed2a2f666707e579e18f2890ab89b7cc6f717c3.tar.gz
astro-5ed2a2f666707e579e18f2890ab89b7cc6f717c3.tar.zst
astro-5ed2a2f666707e579e18f2890ab89b7cc6f717c3.zip
chore: remove docs example (#7306)
Diffstat (limited to 'examples/docs/astro.config.mjs')
-rw-r--r--examples/docs/astro.config.mjs14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/docs/astro.config.mjs b/examples/docs/astro.config.mjs
deleted file mode 100644
index 764f8ec09..000000000
--- a/examples/docs/astro.config.mjs
+++ /dev/null
@@ -1,14 +0,0 @@
-import { defineConfig } from 'astro/config';
-import preact from '@astrojs/preact';
-import react from '@astrojs/react';
-
-// https://astro.build/config
-export default defineConfig({
- integrations: [
- // Enable Preact to support Preact JSX components.
- preact(),
- // Enable React for the Algolia search component.
- react(),
- ],
- site: `https://astro.build`,
-});