diff options
Diffstat (limited to 'examples/with-nanostores/astro.config.mjs')
-rw-r--r-- | examples/with-nanostores/astro.config.mjs | 6 |
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()], }); |