diff --git a/next.config.js b/next.config.js index 5aeb339..e52cc82 100644 --- a/next.config.js +++ b/next.config.js @@ -24,6 +24,7 @@ const nextConfig = (phase, { defaultConfig }) => { domains: ['cdn.jsdelivr.net', "raw.githubusercontent.com"], // Allow images from jsDelivr }, experimental: { + runtime: 'edge', serverActions: { // edit: updated to new key. Was previously `allowedForwardedHosts` allowedOrigins: ["localhost:3000", "get-zen.vercel.app"], @@ -42,7 +43,7 @@ const nextConfig = (phase, { defaultConfig }) => { return { ...defaultConfigWWW, // production only config options here - output: 'export', + //output: 'export', }; };