13 lines
249 B
JavaScript
13 lines
249 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverActions: true,
|
|
serverComponentsExternalPackages: ["mongoose"],
|
|
},
|
|
images: {
|
|
domains: ["m.media-amazon.com"],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|