mirror of
https://github.com/zen-browser/www.git
synced 2025-07-08 17:30:01 +02:00
11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverActions: {
|
|
// edit: updated to new key. Was previously `allowedForwardedHosts`
|
|
allowedOrigins: ['localhost:3000', 'get-zen.vercel.app'],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|