From 91251fa94ddeb098c86d7929fa189e1be667606c Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Tue, 24 Jun 2025 17:49:12 +0200 Subject: [PATCH] chore: update Netlify configuration for build process and publishing path --- apps/web/netlify.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/web/netlify.toml b/apps/web/netlify.toml index 4cf5484..55ec88f 100644 --- a/apps/web/netlify.toml +++ b/apps/web/netlify.toml @@ -1,6 +1,7 @@ [build] - command = "npm run build" - publish = ".next" + base = "../.." + command = "bun install && bunx turbo build --filter=opencut" + publish = "apps/web/.next" [[plugins]] package = "@netlify/plugin-nextjs"