Fix privacy page not loading by adding it to build entrypoints

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Paul Bakaus
2026-03-25 18:05:44 -07:00
co-authored by Claude Opus 4.6
parent 727f0a661e
commit 9d368b777d
+1
View File
@@ -73,6 +73,7 @@ async function buildStaticSite() {
const entrypoints = [
path.join(ROOT_DIR, 'public', 'index.html'),
path.join(ROOT_DIR, 'public', 'cheatsheet.html'),
path.join(ROOT_DIR, 'public', 'privacy.html'),
];
const outdir = path.join(ROOT_DIR, 'build');