summaryrefslogtreecommitdiff
path: root/examples/blog-multiple-authors
diff options
context:
space:
mode:
Diffstat (limited to 'examples/blog-multiple-authors')
-rw-r--r--examples/blog-multiple-authors/package.json6
-rw-r--r--examples/blog-multiple-authors/src/pages/posts/[...page].astro2
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json
index 10ac77139..d92b692d7 100644
--- a/examples/blog-multiple-authors/package.json
+++ b/examples/blog-multiple-authors/package.json
@@ -10,10 +10,10 @@
},
"devDependencies": {
"@astrojs/preact": "^0.0.2",
- "astro": "^0.25.4",
- "sass": "^1.49.9"
+ "astro": "^0.26.0",
+ "sass": "^1.49.11"
},
"dependencies": {
- "preact": "^10.6.6"
+ "preact": "^10.7.0"
}
}
diff --git a/examples/blog-multiple-authors/src/pages/posts/[...page].astro b/examples/blog-multiple-authors/src/pages/posts/[...page].astro
index 7711a940c..f770aadb2 100644
--- a/examples/blog-multiple-authors/src/pages/posts/[...page].astro
+++ b/examples/blog-multiple-authors/src/pages/posts/[...page].astro
@@ -10,7 +10,7 @@ export async function getStaticPaths({ paginate, rss }) {
const sortedPosts = allPosts.sort((a, b) => new Date(b.frontmatter.date).valueOf() - new Date(a.frontmatter.date).valueOf());
// Generate an RSS feed from this collection of posts.
- // NOTE: This is disabled by default, since it requires `buildOptions.site` to be set in your "astro.config.mjs" file.
+ // NOTE: This is disabled by default, since it requires `site` to be set in your "astro.config.mjs" file.
// rss({
// title: 'Don’s Blog',
// description: 'An example blog on Astro',