Skip to content

Commit

Permalink
Merge pull request #44 from lzaycoe/feature/task-12_chuong
Browse files Browse the repository at this point in the history
[FE] Implement feature login/register UCs
  • Loading branch information
bakaqc authored Feb 8, 2025
2 parents 00b89a6 + fefdd69 commit 96bee19
Show file tree
Hide file tree
Showing 27 changed files with 1,180 additions and 58 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,6 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# clerk configuration (can include secrets)
/.clerk/
13 changes: 13 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@ import type { NextConfig } from 'next';

const nextConfig: NextConfig = {
output: 'standalone',
images: {
domains: ['contrib.rocks'],
dangerouslyAllowSVG: true,
},
async redirects() {
return [
{
source: '/teachers',
destination: '/teachers/dashboard',
permanent: false,
},
];
},
};

export default nextConfig;
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
"update-deps": "ncu --filter !@types/node"
},
"dependencies": {
"@clerk/nextjs": "6.11.0",
"@radix-ui/react-dropdown-menu": "2.1.4",
"@radix-ui/react-progress": "1.1.1",
"@radix-ui/react-slot": "1.1.1",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
Expand Down
Loading

0 comments on commit 96bee19

Please sign in to comment.