diff options
Diffstat (limited to 'examples/blog')
-rw-r--r-- | examples/blog/astro.config.mjs | 2 | ||||
-rw-r--r-- | examples/blog/package.json | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/examples/blog/astro.config.mjs b/examples/blog/astro.config.mjs index be7ee7079..08916b1fe 100644 --- a/examples/blog/astro.config.mjs +++ b/examples/blog/astro.config.mjs @@ -4,6 +4,4 @@ import preact from '@astrojs/preact'; // https://astro.build/config export default defineConfig({ integrations: [preact()], - site: 'https://example.com', - base: '/subpath', }); diff --git a/examples/blog/package.json b/examples/blog/package.json index a817c7e67..abc41a47f 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -9,10 +9,10 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.25.4", - "@astrojs/preact": "^0.0.2" + "@astrojs/preact": "^0.0.2", + "astro": "^0.25.4" }, "dependencies": { - "preact": "^10.6.6" + "preact": "^10.7.0" } } |