astro/.changeset/popular-rules-divide.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
303 B
Markdown
Raw Normal View History

---
'@astrojs/rss': minor
---
Added `trailingSlash` option to control whether or not the emitted URLs should have trailing slashes.
```js
import rss from '@astrojs/rss';
export const get = () => rss({
trailingSlash: false
});
```
By passing `false`, the emitted links won't have trailing slashes.