From 16ef02f92499f3ad808b812135ebd82d8604dca9 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 6 Nov 2025 12:08:06 +0100 Subject: [PATCH] Update next.config.js --- t3-app/next.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t3-app/next.config.js b/t3-app/next.config.js index 121c4f4..ca447e8 100644 --- a/t3-app/next.config.js +++ b/t3-app/next.config.js @@ -5,6 +5,8 @@ import "./src/env.js"; /** @type {import("next").NextConfig} */ -const config = {}; +const config = { + output: 'standalone', +}; export default config;