/** @type {import('next').NextConfig} */ const nextConfig = { experimental: { serverActions: true, }, images: { remotePatterns: [ { protocol: "https", hostname: "**", }, ], }, }; module.exports = nextConfig;