All checks were successful
Build and Deploy Blog / build-and-deploy-local (push) Successful in 4m56s
10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
reactStrictMode: true,
|
|
transpilePackages: ['next-mdx-remote']
|
|
};
|
|
|
|
export default nextConfig;
|