diff --git a/next.config.js b/next.config.js index 767719f..762ed07 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,12 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + experimental: { + serverActions: true, + serverComponentsExternalPackages: ["mongoose"], + }, + images: { + domains: ["m.media-amazon.com"], + }, +}; -module.exports = nextConfig +module.exports = nextConfig;