fix: blogname & url

This commit is contained in:
fn
2026-04-02 14:00:19 +01:00
parent 1376ed101c
commit 0fa058cd8c
2 changed files with 4 additions and 4 deletions

View File

@@ -15,4 +15,4 @@ The look and feel is a modern, elegant, developer-focused light-theme blog. No r
Ideal flow going forward: I update some const with the manifest view whenever I make an update to the blog. Ideal flow going forward: I update some const with the manifest view whenever I make an update to the blog.
The blog is called Hyperzine. The blog is called hyperzine.

View File

@@ -7,9 +7,9 @@ const DIST_INDEX_HTML = path.join(DIST_DIR, "index.html");
const SRC_CONFIG = path.join(ROOT, "src", "config.ts"); const SRC_CONFIG = path.join(ROOT, "src", "config.ts");
const DEFAULTS = { const DEFAULTS = {
BLOG_NAME: "Hyperzine", BLOG_NAME: "hyperzine",
BLOG_SITE_URL: "https://example.com", BLOG_SITE_URL: "https://hyperzine.xyz";
BLOG_DEFAULT_DESCRIPTION: "Hyperzine", BLOG_DEFAULT_DESCRIPTION: "hyperzine",
MANIFEST_TX_ID: "" MANIFEST_TX_ID: ""
}; };