diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/blog-multiple-authors/src/pages/$posts.astro | 11 | ||||
-rw-r--r-- | examples/with-nanostores/astro.config.mjs | 2 |
2 files changed, 1 insertions, 12 deletions
diff --git a/examples/blog-multiple-authors/src/pages/$posts.astro b/examples/blog-multiple-authors/src/pages/$posts.astro index 13cff23df..d135beff0 100644 --- a/examples/blog-multiple-authors/src/pages/$posts.astro +++ b/examples/blog-multiple-authors/src/pages/$posts.astro @@ -23,17 +23,6 @@ export function createCollection() { posts: paginate(sortedPosts, {pageSize: 2}), } }, - rss: { - title: 'Don’s Blog', - description: 'An example blog on Astro', - customData: `<language>en-us</language>`, - item: (item) => ({ - title: item.title, - description: item.description, - link: item.url, - pubDate: item.date, - }), - } }; } diff --git a/examples/with-nanostores/astro.config.mjs b/examples/with-nanostores/astro.config.mjs index 05b7f0961..fcabea809 100644 --- a/examples/with-nanostores/astro.config.mjs +++ b/examples/with-nanostores/astro.config.mjs @@ -9,7 +9,7 @@ export default { }, devOptions: { // port: 3000, // The port to run the dev server on. - tailwindConfig: './tailwind.config.js', // Path to tailwind.config.js if used, e.g. './tailwind.config.js' + // tailwindConfig: './tailwind.config.js', // Path to tailwind.config.js if used, e.g. './tailwind.config.js' }, renderers: ['@astrojs/renderer-preact', '@astrojs/renderer-react', '@astrojs/renderer-svelte', '@astrojs/renderer-vue'], }; |