From 238ca86534f7bfe99d0a4d219dd15cee79e1c618 Mon Sep 17 00:00:00 2001 From: Marcus Schiesser <mail@marcusschiesser.de> Date: Wed, 17 Apr 2024 13:47:11 +0800 Subject: [PATCH] fix: google fonts not reachable during build --- .changeset/perfect-sloths-vanish.md | 1 - packages/edge/e2e/test-edge-runtime/src/app/layout.tsx | 5 +---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.changeset/perfect-sloths-vanish.md b/.changeset/perfect-sloths-vanish.md index 77b6d3510..b6ef95e30 100644 --- a/.changeset/perfect-sloths-vanish.md +++ b/.changeset/perfect-sloths-vanish.md @@ -1,6 +1,5 @@ --- "llamaindex": patch -"@llamaindex/edge": patch --- feat: init anthropic agent diff --git a/packages/edge/e2e/test-edge-runtime/src/app/layout.tsx b/packages/edge/e2e/test-edge-runtime/src/app/layout.tsx index 8f8b7cfcc..a54768744 100644 --- a/packages/edge/e2e/test-edge-runtime/src/app/layout.tsx +++ b/packages/edge/e2e/test-edge-runtime/src/app/layout.tsx @@ -1,9 +1,6 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); - export const metadata: Metadata = { title: "Create Next App", description: "Generated by create next app", @@ -18,7 +15,7 @@ export default function RootLayout({ }>) { return ( <html lang="en"> - <body className={inter.className}>{children}</body> + <body>{children}</body> </html> ); } -- GitLab