From 26d3734e7e07d43490fc491e2ab45707ee8d9207 Mon Sep 17 00:00:00 2001 From: whidix Date: Mon, 2 Mar 2026 23:05:33 +0100 Subject: [PATCH] feat: update .env.example with body size limit and uploads directory --- .env.example | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.env.example b/.env.example index ced41bb..4eda761 100644 --- a/.env.example +++ b/.env.example @@ -7,3 +7,10 @@ ORIGIN="" # For production use 32 characters and generated with high entropy # https://www.better-auth.com/docs/installation BETTER_AUTH_SECRET="" + +# SvelteKit request body limit (default is 512K) +# Increase this for image uploads (e.g. 5M, 10M) +BODY_SIZE_LIMIT="10M" + +# Uploaded files directory (relative to project root) +UPLOADS_DIR="uploads"