/** @type {import('next').NextConfig} */ const nextConfig = { async redirects() { return [ { source: '/', destination: '/dashboard/karyawan', permanent: true, }, ]; } }; export default nextConfig;