jgi-dashboard/next.config.mjs

15 lines
294 B
JavaScript

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