Fix incorrect link and content-type header (#98)

This commit is contained in:
ranidspace 2025-06-19 06:19:07 -04:00 committed by GitHub
parent 046fe5abb9
commit fbb2d79619
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,6 @@
import { getNews } from '$lib/posts'
const siteURL = 'https://hyprland.org'
const siteURL = 'https://hypr.land'
const siteTitle = 'Hyprland'
const siteDescription = 'Tiling window manager with the looks'
@ -15,7 +15,7 @@ export const GET = async () => {
const options = {
headers: {
'Cache-Control': 'max-age=0, s-maxage=3600',
'Content-Type': 'application/xml'
'Content-Type': 'application/rss+xml'
}
}