jgi-dashboard/next.config.mjs

15 lines
294 B
JavaScript
Raw Normal View History

2024-09-17 10:25:15 +07:00
/** @type {import('next').NextConfig} */
2024-10-01 13:58:49 +07:00
const nextConfig = {
async redirects() {
return [
{
source: '/',
destination: '/dashboard/karyawan',
permanent: true,
},
];
}
};
2024-09-17 10:25:15 +07:00
export default nextConfig;