summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-07-21 17:39:14 -0700
committerGravatar GitHub <noreply@github.com> 2021-07-21 17:39:14 -0700
commite31e276781227826a7d1a1d3cc70dfb45c617d9d (patch)
treee03100d7de4f1bed2c5663475cd5ec30372726dc /examples
parent5549f28157b7fddcd12af4b2ddb5923267c140ce (diff)
downloadastro-e31e276781227826a7d1a1d3cc70dfb45c617d9d.tar.gz
astro-e31e276781227826a7d1a1d3cc70dfb45c617d9d.tar.zst
astro-e31e276781227826a7d1a1d3cc70dfb45c617d9d.zip
get build-all passing (#795)
Diffstat (limited to 'examples')
-rw-r--r--examples/blog-multiple-authors/src/pages/$posts.astro11
-rw-r--r--examples/with-nanostores/astro.config.mjs2
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'],
};