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