mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
reenabled turbopack to get it running again
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
"version": "0.2.0",
|
||||
"private": "true",
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"dev": "next dev --turbopack",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"lint": "next lint"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import "@styles/globals.css";
|
||||
import Navbar from "@components/Navbar";
|
||||
import PopNav from "@components/PopNav/page";
|
||||
import { Roboto } from 'next/font/google'
|
||||
import { Roboto } from 'next/font/google';
|
||||
import constants from "@src/lib/constants";
|
||||
import Footer from "@/components/Footer";
|
||||
// import { ClerkProvider, SignInButton, SignedIn, SignedOut,UserButton} from '@clerk/nextjs';
|
||||
@@ -22,7 +22,7 @@ export default function RootLayout(props: { children: React.ReactNode }) {
|
||||
|
||||
return (
|
||||
/* <ClerkProvider> */
|
||||
<html lang="en" suppressHydrationWarning className={roboto.className}>
|
||||
<html lang="en" suppressHydrationWarning className={""}>
|
||||
<body className="bg-slate-200 ">
|
||||
<header>
|
||||
{/* <SignedOut>
|
||||
|
||||
@@ -6,3 +6,4 @@ export const fontSans = FontSans({
|
||||
subsets: ["latin"],
|
||||
variable: "--font-sans",
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user