Skip to content

Commit

Permalink
Merge pull request #24 from ARYPROGRAMMER/preview-deployment
Browse files Browse the repository at this point in the history
UI: FULL LAYOUT CHANGE - BREAKING 2
  • Loading branch information
ARYPROGRAMMER authored Dec 22, 2024
2 parents 317df8d + f72059d commit d38b33b
Show file tree
Hide file tree
Showing 19 changed files with 548 additions and 29 deletions.
10 changes: 9 additions & 1 deletion next.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
async redirects() {
return [
{
source: '/',
destination: '/default',
permanent: true, // Set to false if you want it to be a temporary redirect
},
];
},
};

export default nextConfig;
Loading

0 comments on commit d38b33b

Please sign in to comment.