diff options
Diffstat (limited to 'examples/subpath')
-rw-r--r-- | examples/subpath/astro.config.mjs | 4 | ||||
-rw-r--r-- | examples/subpath/package.json | 2 |
2 files changed, 3 insertions, 3 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'], }); diff --git a/examples/subpath/package.json b/examples/subpath/package.json index aab141e2a..d29f58717 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/renderer-react": "^0.5.0", + "@astrojs/react": "^0.0.1", "astro": "^0.24.3", "sass": "^1.49.9" } |