feat: Implement organization-based SSO login with an AsyncCombobox and add logo variant branding options.

This commit is contained in:
2026-02-26 11:50:34 -03:00
parent 824da230a4
commit 947abcb0bc
24 changed files with 823 additions and 143 deletions
+4 -3
View File
@@ -9,20 +9,21 @@ const nextConfig = {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
remotePatterns: [
{
protocol: 'http',
hostname: 'localhost',
port: '3001',
pathname: '/uploads/**',
pathname: '/assets/**',
},
],
},
async rewrites() {
return [
{
source: '/uploads/:path*',
destination: 'http://localhost:3001/uploads/:path*',
source: '/assets/:path*',
destination: 'http://localhost:3001/assets/:path*',
},
];
},