← back to Designtradelive
Add clean /privacy route (AdSense URL consistency)
389615360513196756afb6d61f2b9368e849c911 · 2026-09-10 11:51:20 -0700 · Steve Abrams
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Files touched
Diff
commit 389615360513196756afb6d61f2b9368e849c911
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Thu Sep 10 11:51:20 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 98d7804..58d6df0 100644
--- a/server.js
+++ b/server.js
@@ -38,6 +38,7 @@ app.use((req, res, next) => {
});
app.use(express.static(path.join(__dirname, 'public'), { maxAge: '1h' }));
+app.get('/privacy', (req, res) => res.sendFile(path.join(__dirname, 'public', 'privacy.html')));
app.use((req, res, next) => {
res.set('Cache-Control', 'no-store, must-revalidate');
← 4b937f5 Add privacy policy page (/privacy.html) for AdSense
·
back to Designtradelive
·
(newest)