/** @type {import('next').NextConfig} */ const nextConfig = { rewrites: async function () { return [ { source: '/', destination: '/home', }, ]; }, }; export default nextConfig;