mirror of
https://github.com/runyanjake/cooking.git
synced 2026-09-25 12:48:40 -07:00
11 lines
283 B
TypeScript
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;
|