From 27ddc9d9203dcf84f093705cbe23799624950379 Mon Sep 17 00:00:00 2001 From: Tyler Breisacher Date: Tue, 21 Apr 2026 16:06:17 -0700 Subject: [PATCH] Take out outputFileTracingRoot --- examples/nextjs/next.standalone.mjs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/examples/nextjs/next.standalone.mjs b/examples/nextjs/next.standalone.mjs index f68178b05..11c936d0d 100644 --- a/examples/nextjs/next.standalone.mjs +++ b/examples/nextjs/next.standalone.mjs @@ -1,20 +1,9 @@ -import { join } from 'node:path' - -// Must include the parent .aspect_rules_js package store when tracing for standalone output -const outputFileTracingRoot = join(import.meta.dirname, '../') - /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, // Bundle everything into a standalone output output: 'standalone', - outputFileTracingRoot, - - // If you're using NextJS 14, replace outputFileTracingRoot with: - // experimental: { - // outputFileTracingRoot, - // }, } export default nextConfig