cooking/next.config.ts
2026-09-13 14:50:11 -07:00

11 lines
283 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
reactStrictMode: true,
// satori loads its layout engine as WebAssembly, which shouldn't go through the bundler
serverExternalPackages: ['satori'],
};
export default nextConfig;