jgi-dashboard/next.config.mjs

16 lines
312 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 = {
2024-10-01 15:48:44 +07:00
basePath: '/dashboard',
2024-10-01 13:58:49 +07:00
async redirects() {
return [
{
source: '/',
2024-10-01 15:47:10 +07:00
destination: '/karyawan',
2024-10-01 13:58:49 +07:00
permanent: true,
},
];
}
};
2024-09-17 10:25:15 +07:00
export default nextConfig;