Bug on Auth.

This commit is contained in:
charles-gauthereau
2025-01-12 12:30:32 +01:00
parent dca1799aac
commit 2440592286
2 changed files with 3 additions and 7 deletions
+3 -1
View File
@@ -21,7 +21,9 @@ export default function RootLayout({
}>) {
return (
<html lang="en" suppressHydrationWarning>
<body className={cn(inter.className, "h-full")}>
<body
className={cn(inter.className, "h-full")}
>
<Providers>
{children}
</Providers>
-6
View File
@@ -3,17 +3,11 @@
const nextConfig = {
output: "standalone",
typescript: {
//TODO fix all type errors and remove 'ignoreBuildErrors'
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
// bundlePagesRouterDependencies: true,
compiler: {
removeConsole: process.env.NODE_ENV === 'production',
},