Skip to content

Commit 008657d

Browse files
committed
update production domain to stellarsplit-dapp.vercel.app
Replace old splitapp-steel.vercel.app fallback with the new custom domain in metadataBase, sitemap, and robots config.
1 parent 33d0791 commit 008657d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export const metadata: Metadata = {
5959
"Create on-chain invoices on Stellar where multiple payers each owe a share. USDC auto-routes to recipients when fully funded.",
6060
metadataBase: new URL(
6161
process.env.NEXT_PUBLIC_APP_URL ??
62-
(process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : "https://splitapp-steel.vercel.app")
62+
(process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : "https://stellarsplit-dapp.vercel.app")
6363
),
6464
manifest: "/manifest.json",
6565
appleWebApp: {

src/app/robots.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { MetadataRoute } from "next";
22

33
const appUrl =
44
process.env.NEXT_PUBLIC_APP_URL ??
5-
(process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : "https://splitapp-steel.vercel.app");
5+
(process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : "https://stellarsplit-dapp.vercel.app");
66

77
export default function robots(): MetadataRoute.Robots {
88
return {

src/app/sitemap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { MetadataRoute } from "next";
22

33
const appUrl =
44
process.env.NEXT_PUBLIC_APP_URL ??
5-
(process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : "https://splitapp-steel.vercel.app");
5+
(process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : "https://stellarsplit-dapp.vercel.app");
66

77
export default function sitemap(): MetadataRoute.Sitemap {
88
const publicPaths = [

0 commit comments

Comments
 (0)