Skip to content

Commit a0b3876

Browse files
TurtleWolfeclaude
andcommitted
feat: configure custom domain TurtleWolfe.com for GitHub Pages
- Add CNAME file pointing to turtlewolfe.com - Update sitemap, RSS, and JSON feed URLs from tortoisewolfe.github.io/TurtleWolfe to turtlewolfe.com - basePath auto-detects as empty when CNAME exists (root domain) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent ad0a63b commit a0b3876

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

public/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
turtlewolfe.com

public/feed.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"version": "https://jsonfeed.org/version/1.1",
33
"title": "TurtleWolfe Blog",
4-
"home_page_url": "https://tortoisewolfe.github.io/TurtleWolfe/blog",
5-
"feed_url": "https://tortoisewolfe.github.io/TurtleWolfe/feed.json",
4+
"home_page_url": "https://turtlewolfe.com/blog",
5+
"feed_url": "https://turtlewolfe.com/feed.json",
66
"description": "Opinionated Next.js PWA Template",
77
"items": []
88
}

public/robots.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ Disallow: /messages/
1515
Disallow: /conversations/
1616
Disallow: /payment-demo/
1717

18-
Sitemap: https://tortoisewolfe.github.io/TurtleWolfe/sitemap.xml
18+
Sitemap: https://turtlewolfe.com/sitemap.xml

scripts/generate-rss.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const matter = require('gray-matter');
66

77
const BLOG_DIR = path.join(process.cwd(), 'blog');
88
const PUBLIC_DIR = path.join(process.cwd(), 'public');
9-
const SITE_URL = 'https://tortoisewolfe.github.io/TurtleWolfe';
9+
const SITE_URL = 'https://turtlewolfe.com';
1010

1111
function escapeXml(unsafe) {
1212
return unsafe

scripts/generate-sitemap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const path = require('path');
55

66
const PUBLIC_DIR = path.join(process.cwd(), 'public');
77
const BLOG_DATA_PATH = path.join(process.cwd(), 'src/lib/blog/blog-data.json');
8-
const SITE_URL = 'https://tortoisewolfe.github.io/TurtleWolfe';
8+
const SITE_URL = 'https://turtlewolfe.com';
99

1010
// Static pages in the application (public, indexable pages only)
1111
const staticPages = [

0 commit comments

Comments
 (0)