From bf6b5dcb172607313e3a32ab7b1a6fb7ee2a11bc Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Tue, 28 Apr 2026 21:42:48 +0000 Subject: [PATCH] Fix privacy policy render --- html/template/sync/layout/base.html | 3 --- vite/sync/vite.config.js | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/html/template/sync/layout/base.html b/html/template/sync/layout/base.html index e40b9ae7..cfceb719 100644 --- a/html/template/sync/layout/base.html +++ b/html/template/sync/layout/base.html @@ -9,9 +9,6 @@ {{ block "extraheader" . }}{{ end }} - {{ if not .Config.IsProductionEnvironment }} - - {{ end }} {{ template "content" . }} diff --git a/vite/sync/vite.config.js b/vite/sync/vite.config.js index 7822530c..d83562db 100644 --- a/vite/sync/vite.config.js +++ b/vite/sync/vite.config.js @@ -85,6 +85,10 @@ export default defineConfig({ target: "http://127.0.0.1:9003", changeOrigin: false, }, + "/privacy": { + target: "http://127.0.0.1:9003", + changeOrigin: false, + }, }, strictPort: true, },