/** * @type {import('next').NextConfig} **/ module.exports = { async redirects() { return [ { source: '/', destination: '/dashboard', permanent: true, }, ]; }, poweredByHeader: false, reactStrictMode: true, };