← back to IWasCute
Add clean /privacy route (AdSense URL consistency)
edd2d5729f55589a12300b269ef0ca87ac865133 · 2026-09-10 11:51:24 -0700 · Steve Abrams
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Files touched
Diff
commit edd2d5729f55589a12300b269ef0ca87ac865133
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Thu Sep 10 11:51:24 2026 -0700
Add clean /privacy route (AdSense URL consistency)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
server.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/server.js b/server.js
index 669ac28..b519c30 100644
--- a/server.js
+++ b/server.js
@@ -46,6 +46,7 @@ app.get('/admin', adminAuth, (req, res) => {
});
app.use(express.static(path.join(__dirname, 'public')));
+app.get('/privacy', (req, res) => res.sendFile(path.join(__dirname, 'public', 'privacy.html')));
// SPA fallback
app.use((req, res) => {
← 1106eb7 Add privacy policy page for AdSense
·
back to IWasCute
·
iwascute: redirect /privacy -> /privacy.html (AdSense URL co f962e4a →