11 lines
245 B
JavaScript
11 lines
245 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
transpilePackages: ["@padel-pro/shared"],
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: "https", hostname: "res.cloudinary.com" },
|
|
],
|
|
},
|
|
};
|
|
module.exports = nextConfig;
|