Files
app-padel/apps/web/next.config.js
2026-02-01 06:10:02 +00:00

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;