18 lines
330 B
JavaScript
Executable File
18 lines
330 B
JavaScript
Executable File
/** @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;
|