Skip to content

Commit d38b33b

Browse files
Merge pull request #24 from ARYPROGRAMMER/preview-deployment
UI: FULL LAYOUT CHANGE - BREAKING 2
2 parents 317df8d + f72059d commit d38b33b

19 files changed

+548
-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)