Create client API keys section on settings page

- Add table shadcn component to use in API keys settings section
- In dev mode, route requests to auth to khoj server at localhost:42110
This commit is contained in:
Debanjum Singh Solanky
2024-07-24 18:17:21 +05:30
parent 00fa4fa0fa
commit 2e165a0e0a
3 changed files with 246 additions and 1 deletions

View File

@@ -10,6 +10,10 @@ const nextConfig = {
source: '/api/:path*',
destination: 'http://localhost:42110/api/:path*',
},
{
source: '/auth/:path*',
destination: 'http://localhost:42110/auth/:path*',
},
];
},
trailingSlash: true,