fix: rename env var
Some checks failed
Deploy / lint-build-deploy (push) Failing after 1m23s

This commit is contained in:
2026-01-29 18:19:00 +01:00
parent e73262b3b3
commit dc3850ac4d
9 changed files with 15 additions and 15 deletions

View File

@@ -3,19 +3,19 @@ import { MetadataRoute } from 'next';
export default function sitemap(): MetadataRoute.Sitemap {
return [
{
url: process.env.HOME_URL!,
url: process.env.NEXT_PUBLIC_HOME_URL!,
lastModified: new Date(),
changeFrequency: 'yearly',
priority: 1
},
{
url: `${process.env.HOME_URL!}/privacy`,
url: `${process.env.NEXT_PUBLIC_HOME_URL!}/privacy`,
lastModified: new Date(),
changeFrequency: 'yearly',
priority: 0.5
},
{
url: `${process.env.HOME_URL!}/unsubscribe`,
url: `${process.env.NEXT_PUBLIC_HOME_URL!}/unsubscribe`,
lastModified: new Date(),
changeFrequency: 'yearly',
priority: 0.2