Skip to content

Commit

Permalink
🐛 fix: fix siteURL in sitemap config
Browse files Browse the repository at this point in the history
  • Loading branch information
bentwnghk committed Mar 8, 2024
1 parent 5d9548e commit 7a3db3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion next-sitemap.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const isVercelPreview = process.env.VERCEL === '1' && process.env.VERCEL_ENV !==

const vercelPreviewUrl = `https://${process.env.VERCEL_URL}`;

const siteUrl = isVercelPreview ? vercelPreviewUrl : 'https://chat-preview.lobehub.com';
const siteUrl = isVercelPreview ? vercelPreviewUrl : 'https://ai.mister5.net';

/** @type {import('next-sitemap').IConfig} */
const config = {
Expand Down

0 comments on commit 7a3db3c

Please sign in to comment.