summaryrefslogtreecommitdiff
path: root/examples/with-nanostores/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Ben Holmes <hey@bholmes.dev> 2022-07-11 15:42:10 -0400
committerGravatar GitHub <noreply@github.com> 2022-07-11 15:42:10 -0400
commitfaf3f3a8d111b543c0aca12432fe1a2ee5e2d726 (patch)
treea754bd03b9db417a5dfeb1a4a50236b858884ec1 /examples/with-nanostores/astro.config.mjs
parentbf5d1cc1e71da38a14658c615e9481f2145cc6e7 (diff)
downloadastro-faf3f3a8d111b543c0aca12432fe1a2ee5e2d726.tar.gz
astro-faf3f3a8d111b543c0aca12432fe1a2ee5e2d726.tar.zst
astro-faf3f3a8d111b543c0aca12432fe1a2ee5e2d726.zip
Update `with-nanostores` example to match docs walkthrough (#3840)
* feat: replace with-nanostores with new example * docs: update README with docs call-out * chore: small formatting inconsistencies * nit: standardize to spaces :'( * nit: standardize to tabs! * refactor: use html "hidden" property * nit: beta.66 for sanity
Diffstat (limited to 'examples/with-nanostores/astro.config.mjs')
-rw-r--r--examples/with-nanostores/astro.config.mjs6
1 files changed, 1 insertions, 5 deletions
diff --git a/examples/with-nanostores/astro.config.mjs b/examples/with-nanostores/astro.config.mjs
index 4b50887cd..3e161041b 100644
--- a/examples/with-nanostores/astro.config.mjs
+++ b/examples/with-nanostores/astro.config.mjs
@@ -1,12 +1,8 @@
import { defineConfig } from 'astro/config';
import preact from '@astrojs/preact';
-import react from '@astrojs/react';
-import svelte from '@astrojs/svelte';
-import vue from '@astrojs/vue';
-import solid from '@astrojs/solid-js';
// https://astro.build/config
export default defineConfig({
// Enable many frameworks to support all different kinds of components.
- integrations: [preact(), react(), svelte(), vue(), solid()],
+ integrations: [preact()],
});