blob: d8ef2367306b32da5082c07d205d0b252afa17bd [file] [log] [blame]
import { join } from 'node:path'
const appDir = import.meta.dirname || dirname(fileURLToPath(import.meta.url))
// Must include the parent .aspect_rules_js package store when tracing for standalone output
const outputFileTracingRoot = join(appDir, '../../')
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// Bundle everything into a standalone output
output: 'standalone',
outputFileTracingRoot,
}
export default nextConfig