diff options
Diffstat (limited to 'examples/subpath/astro.config.mjs')
-rw-r--r-- | examples/subpath/astro.config.mjs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/subpath/astro.config.mjs b/examples/subpath/astro.config.mjs index 42ecf7db4..bb680d762 100644 --- a/examples/subpath/astro.config.mjs +++ b/examples/subpath/astro.config.mjs @@ -1,10 +1,10 @@ import { defineConfig } from 'astro/config'; +import react from '@astrojs/react'; // https://astro.build/config export default defineConfig({ - // Comment out "renderers: []" to enable Astro's default component support. + integrations: [react()], buildOptions: { site: 'http://example.com/blog', }, - renderers: ['@astrojs/renderer-react'], }); |