From 64118090d61aa1604a282c267a51e01e60f7f44f Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Sun, 4 Jan 2026 09:30:09 +1100 Subject: [PATCH] Add support for deploying using Dokku --- .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" + } + } +}