Loading app/layout.tsx +14 −4 Original line number Diff line number Diff line Loading @@ -2,7 +2,7 @@ import React from 'react'; import { NextUIProvider } from '@nextui-org/react'; import type { Metadata } from 'next'; import { Roboto } from 'next/font/google'; import localFont from 'next/font/local'; import './globals.css'; export const metadata: Metadata = { Loading @@ -10,9 +10,19 @@ export const metadata: Metadata = { description: 'HypO Portal', }; const roboto = Roboto({ subsets: ['latin'], weight: ['100', '300', '400', '500', '700', '900'], const roboto = localFont({ src: [ { path: './fonts/Roboto-Regular.woff2', weight: '400', style: 'normal', }, { path: './fonts/Roboto-Bold.woff2', weight: '700', style: 'normal', }, ], }); export default function RootLayout({ Loading next.config.mjs +1 −9 Original line number Diff line number Diff line /** @type {import('next').NextConfig} */ const nextConfig = { eslint: { ignoreDuringBuilds: true, }, typescript: { ignoreBuildErrors: true, }, }; const nextConfig = {}; export default nextConfig; Loading
app/layout.tsx +14 −4 Original line number Diff line number Diff line Loading @@ -2,7 +2,7 @@ import React from 'react'; import { NextUIProvider } from '@nextui-org/react'; import type { Metadata } from 'next'; import { Roboto } from 'next/font/google'; import localFont from 'next/font/local'; import './globals.css'; export const metadata: Metadata = { Loading @@ -10,9 +10,19 @@ export const metadata: Metadata = { description: 'HypO Portal', }; const roboto = Roboto({ subsets: ['latin'], weight: ['100', '300', '400', '500', '700', '900'], const roboto = localFont({ src: [ { path: './fonts/Roboto-Regular.woff2', weight: '400', style: 'normal', }, { path: './fonts/Roboto-Bold.woff2', weight: '700', style: 'normal', }, ], }); export default function RootLayout({ Loading
next.config.mjs +1 −9 Original line number Diff line number Diff line /** @type {import('next').NextConfig} */ const nextConfig = { eslint: { ignoreDuringBuilds: true, }, typescript: { ignoreBuildErrors: true, }, }; const nextConfig = {}; export default nextConfig;