File tree Expand file tree Collapse file tree 3 files changed +1
-11
lines changed
dev-packages/e2e-tests/test-applications/nextjs-t3 Expand file tree Collapse file tree 3 files changed +1
-11
lines changed Original file line number Diff line number Diff line change 2020 "@trpc/client" : " ~11.3.0" ,
2121 "@trpc/react-query" : " ~11.3.0" ,
2222 "@trpc/server" : " ~11.3.0" ,
23- "geist" : " ^1.3.0" ,
2423 "next" : " 14.2.29" ,
2524 "react" : " 18.3.1" ,
2625 "react-dom" : " 18.3.1" ,
Original file line number Diff line number Diff line change 11import '~/styles/globals.css' ;
22
3- import { GeistSans } from 'geist/font/sans' ;
43import { type Metadata } from 'next' ;
54
65import { TRPCReactProvider } from '~/trpc/react' ;
@@ -13,7 +12,7 @@ export const metadata: Metadata = {
1312
1413export default function RootLayout ( { children } : Readonly < { children : React . ReactNode } > ) {
1514 return (
16- < html lang = "en" className = { ` ${ GeistSans . variable } ` } >
15+ < html lang = "en" >
1716 < body >
1817 < TRPCReactProvider > { children } </ TRPCReactProvider >
1918 </ body >
Original file line number Diff line number Diff line change 11import { type Config } from 'tailwindcss' ;
2- import { fontFamily } from 'tailwindcss/defaultTheme' ;
32
43export default {
54 content : [ './src/**/*.tsx' ] ,
6- theme : {
7- extend : {
8- fontFamily : {
9- sans : [ 'var(--font-geist-sans)' , ...fontFamily . sans ] ,
10- } ,
11- } ,
12- } ,
135 plugins : [ ] ,
146} satisfies Config ;
You can’t perform that action at this time.
0 commit comments