Files
tt-booking/next.config.js
T
2025-09-21 17:11:02 +01:00

14 lines
189 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
};
module.exports = nextConfig;