[object Object]

← back to IWasCute

iwascute: redirect /privacy -> /privacy.html (AdSense URL consistency)

f962e4a877ac7d56910fd7b7a6282a82bae6c144 · 2026-09-10 12:00:39 -0700 · Steve Abrams

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

Files touched

Diff

commit f962e4a877ac7d56910fd7b7a6282a82bae6c144
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Thu Sep 10 12:00:39 2026 -0700

    iwascute: redirect /privacy -> /privacy.html (AdSense URL consistency)
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
 next.config.ts | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/next.config.ts b/next.config.ts
index e9ffa30..413a2d5 100644
--- a/next.config.ts
+++ b/next.config.ts
@@ -1,7 +1,11 @@
 import type { NextConfig } from "next";
 
 const nextConfig: NextConfig = {
-  /* config options here */
+  async redirects() {
+    return [
+      { source: "/privacy", destination: "/privacy.html", permanent: true },
+    ];
+  },
 };
 
 export default nextConfig;

← edd2d57 Add clean /privacy route (AdSense URL consistency)  ·  back to IWasCute  ·  iwascute: canonicalize homepage for AdSense — redirect dev v 21032c0 →