From 17d673a7a725bb55c22ce7de2f1b41e4169a3c54 Mon Sep 17 00:00:00 2001 From: Mikkel Jakobsen Date: Sat, 16 Nov 2024 13:32:47 +0100 Subject: [PATCH] Disable sourcemaps again I think it causes problems with .next dir and permissions right now... --- lagoon/start.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lagoon/start.sh b/lagoon/start.sh index f9e42baf..7b3980ea 100755 --- a/lagoon/start.sh +++ b/lagoon/start.sh @@ -11,5 +11,9 @@ cd /app # TODO: Remember to adjust the following line before deploying to production. # Using `yarn start:with-server-source-maps` is probably adding a performance overhead. -yarn build && yarn start:with-server-source-maps +# yarn build && yarn start:with-server-source-maps + +# Source maps seems to cause permission issues in the Lagoon environment right now. +# Need to investigate further. +yarn build && yarn start exit 0;