From 9b079e31a0b987abe557022c8213e6d47dc3211b Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Fri, 27 Mar 2026 11:16:14 +0100 Subject: [PATCH] Update site URLs to use the 'www' subdomain across the application - Changed the site URL in index.html, router, and server routes from 'https://ypchat.net' to 'https://www.ypchat.net' for consistency and improved SEO. - Updated related meta tags and constants to reflect the new URL structure. These changes ensure a unified domain reference throughout the application. --- client/index.html | 10 +++++----- client/src/router/index.js | 2 +- server/routes-seo.js | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/client/index.html b/client/index.html index 9f0b8e8..d293fbc 100644 --- a/client/index.html +++ b/client/index.html @@ -14,8 +14,8 @@ - - + + @@ -23,14 +23,14 @@ - + - + - +
diff --git a/client/src/router/index.js b/client/src/router/index.js index 8b33d90..d41334f 100644 --- a/client/src/router/index.js +++ b/client/src/router/index.js @@ -4,7 +4,7 @@ import PartnersView from '../views/PartnersView.vue'; import MockupView from '../views/MockupView.vue'; import FeedbackView from '../views/FeedbackView.vue'; -const SITE_URL = 'https://ypchat.net'; +const SITE_URL = 'https://www.ypchat.net'; const DEFAULT_IMAGE = `${SITE_URL}/static/favicon.png`; const homeSchema = { diff --git a/server/routes-seo.js b/server/routes-seo.js index 896d08d..a584f18 100644 --- a/server/routes-seo.js +++ b/server/routes-seo.js @@ -2,7 +2,7 @@ import { readFileSync, existsSync } from 'fs'; import { join, resolve } from 'path'; import { loadFeedback } from './feedback-store.js'; -const SITE_URL = 'https://ypchat.net'; +const SITE_URL = 'https://www.ypchat.net'; const DEFAULT_IMAGE = `${SITE_URL}/static/favicon.png`; const seoData = {