From aa1b57bbcd99da4c6d68c145f7c07ea7bd35c8dc Mon Sep 17 00:00:00 2001 From: Dhravya Date: Fri, 23 Feb 2024 16:04:49 -0700 Subject: chaos --- apps/web/src/app/layout.tsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'apps/web/src/app/layout.tsx') diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx index 70f9df5d..9d62d395 100644 --- a/apps/web/src/app/layout.tsx +++ b/apps/web/src/app/layout.tsx @@ -1,18 +1,20 @@ -import "@/styles/globals.css"; +import '@/styles/globals.css'; -import { Inter } from "next/font/google"; +import { Inter } from 'next/font/google'; const inter = Inter({ - subsets: ["latin"], - variable: "--font-sans", + subsets: ['latin'], + variable: '--font-sans', }); export const metadata = { - title: "Create T3 App", - description: "Generated by create-t3-app", - icons: [{ rel: "icon", url: "/favicon.ico" }], + title: 'Create T3 App', + description: 'Generated by create-t3-app', + icons: [{ rel: 'icon', url: '/favicon.ico' }], }; +export const runtime = 'edge'; + export default function RootLayout({ children, }: { -- cgit v1.2.3