Skip to content
Compare
Choose a tag to compare
@astrobot-houston astrobot-houston released this 13 Mar 20:08
· 6283 commits to main since this release
43daac7

Minor Changes

  • #6453 2e362042c Thanks @ematipico! - Added trailingSlash option to control whether or not the emitted URLs should have trailing slashes.

    import rss from '@astrojs/rss';
    
    export const get = () =>
      rss({
        trailingSlash: false,
      });

    By passing false, the emitted links won't have trailing slashes.