mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-27 09:31:21 +00:00
Merge pull request #224 from bartvdbraak/fix/sitemap-https
Fix URL protocol in sitemap generation
This commit is contained in:
commit
fc163ae061
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ import { siteConfig } from '$lib/config/site';
|
|||
import { navConfig } from '$lib/config/nav';
|
||||
import type { NavItem } from '$lib/types/nav';
|
||||
|
||||
const SITE_URL = siteConfig.url;
|
||||
const SITE_URL = `https://${siteConfig.url}`;
|
||||
|
||||
/**
|
||||
* SvelteKit RequestHandler for generating sitemap.
|
||||
|
|
Loading…
Reference in a new issue