hamptonbrown/next.config.mjs

18 lines
330 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: [],
},
// Removed rewrite rule - homepage will be at root (/)
// async rewrites() {
// return [
// {
// source: '/',
// destination: '/tax-planning',
// },
// ];
// },
};
export default nextConfig;