Skip to content

Commit 54a56d4

Browse files
committed
UI: FULL LAYOUT CHANGE - BREAKING 2
Signed-off-by: ARYPROGRAMMER <[email protected]>
1 parent 6b4e46c commit 54a56d4

19 files changed

+549
-29
lines changed

next.config.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
import type { NextConfig } from "next";
22

33
const nextConfig: NextConfig = {
4-
/* config options here */
4+
async redirects() {
5+
return [
6+
{
7+
source: '/',
8+
destination: '/default',
9+
permanent: true, // Set to false if you want it to be a temporary redirect
10+
},
11+
];
12+
},
513
};
614

715
export default nextConfig;

0 commit comments

Comments
 (0)