pages and menus

This commit is contained in:
Timur Ercan
2022-12-08 16:04:22 +01:00
parent 08b6957b27
commit ca6fb819c8
5 changed files with 25 additions and 16 deletions

View File

@@ -1,5 +1,14 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
async redirects() {
return [
{
source: "/",
destination: "/login",
permanent: true,
},
];
},
reactStrictMode: true,
swcMinify: true,
distDir: "build",