Files
app-padel/apps/web/next.config.js
Ivan 45ceeba9e3 feat: rebrand application from Padel Pro to SmashPoint
Complete rename across all layers: UI branding, package names
(@smashpoint/web, @smashpoint/shared), infrastructure (Docker,
DB config), seed data, documentation, and logo/favicon.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-08 02:46:29 +00:00

12 lines
270 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
transpilePackages: ["@smashpoint/shared"],
images: {
remotePatterns: [
{ protocol: "https", hostname: "res.cloudinary.com" },
],
},
};
module.exports = nextConfig;