Face-Recognition/next.config.mjs
2024-04-16 16:48:06 +07:00

14 lines
218 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
rewrites: async function () {
return [
{
source: '/',
destination: '/home',
},
];
},
};
export default nextConfig;