Files
markdownblog/next.config.js
rattatwinko 7350f5d42d config ?
2025-06-17 17:50:30 +02:00

12 lines
282 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
reactStrictMode: true,
swcMinify: true,
// Ensure we can access the app from outside the container
experimental: {
outputFileTracingRoot: undefined,
}
}
module.exports = nextConfig