blob: e089fe49252923ab25d4125859b5c9f11a798c75 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
'@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.
|