- Replace flat mustard with softer champagne tones and gentler shadows - Hero eyebrow: Book direct · Shitaye Suite Hotel - Lighter pattern grid, chips, badges, card hover ring; meetings band ring toned down - Ignore .dev.vars and .wrangler for local secrets and cache Made-with: Cursor
16 lines
460 B
TypeScript
16 lines
460 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: "https", hostname: "images.unsplash.com", pathname: "/**" },
|
|
{ protocol: "https", hostname: "images.pexels.com", pathname: "/**" },
|
|
{ protocol: "https", hostname: "cf.bstatic.com", pathname: "/**" },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|
|
|
|
import('@opennextjs/cloudflare').then(m => m.initOpenNextCloudflareForDev());
|