Files
markdownblog/next.config.js
2025-06-17 19:16:56 +02:00

11 lines
194 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
reactStrictMode: true,
swcMinify: true,
server: {
port: 8080,
},
}
module.exports = nextConfig