Files
blog/next.config.ts
Gabriel Kaszewski 53ee0ccb06
All checks were successful
Build and Deploy Blog / build-and-deploy-local (push) Successful in 4m56s
perf: standalone output, slim Docker image
2026-08-08 15:32:08 +02:00

10 lines
195 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
reactStrictMode: true,
transpilePackages: ['next-mdx-remote']
};
export default nextConfig;