Files
markdownblog/next.config.js
rattatwinko 682e006e0b docker shit
2025-06-16 22:20:38 +02:00

17 lines
378 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,
},
// Configure the hostname and port
server: {
hostname: '0.0.0.0',
port: 8080,
},
}
module.exports = nextConfig