From 340107bf907720c1b663007b51f99bed942a2a58 Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Thu, 15 Jan 2026 18:28:20 +1100 Subject: [PATCH] Add setup for dokku deployment --- .buildpacks | 2 ++ static.json | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 .buildpacks create mode 100644 static.json diff --git a/.buildpacks b/.buildpacks new file mode 100644 index 0000000..95a00c1 --- /dev/null +++ b/.buildpacks @@ -0,0 +1,2 @@ +heroku/nodejs +https://github.com/heroku/heroku-buildpack-static.git diff --git a/static.json b/static.json new file mode 100644 index 0000000..dfd2421 --- /dev/null +++ b/static.json @@ -0,0 +1,10 @@ +{ + "root": "dist/", + "clean_urls": true, + "https_only": true, + "headers": { + "/**": { + "Cache-Control": "public, max-age=31536000" + } + } +}