mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
Bug on Auth.
This commit is contained in:
+3
-1
@@ -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>
|
||||
|
||||
@@ -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',
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user