From e9ed9af985d1e77a46293fd1572115f03868445f Mon Sep 17 00:00:00 2001 From: Sarthak Agrawal Date: Wed, 5 Aug 2026 00:41:39 +0530 Subject: [PATCH] fix: pin standalone build root --- next.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.ts b/next.config.ts index 68d32ba..c40af53 100644 --- a/next.config.ts +++ b/next.config.ts @@ -29,6 +29,9 @@ const securityHeaders = [ ]; const nextConfig: NextConfig = { + // This repository lives below Fleet's root lockfile. Keep standalone output + // rooted here so OpenNext finds `.next/standalone/.next` consistently. + outputFileTracingRoot: process.cwd(), // Emit .next/standalone so Beasties' post-build inline-critical-css.mjs // can modify the same HTML that OpenNext's --skipNextBuild consumes. output: 'standalone',