Spaces:
Runtime error
Runtime error
File size: 760 Bytes
0971cc4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import { ThemeProvider } from "@/providers/theme-provider";
import type { Metadata } from "next";
import { Toaster } from "@/components/ui/sonner";
import "./globals.css";
export const runtime = "edge"; // 'nodejs' (default) | 'edge'
export const metadata: Metadata = {
title: "vLLM UI",
description: "vLLM chatbot web interface",
};
export const viewport = {
width: "device-width",
initialScale: 1,
maximumScale: 1,
userScalable: 1,
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body>
<ThemeProvider attribute="class" defaultTheme="dark">
{children}
<Toaster />
</ThemeProvider>
</body>
</html>
);
}
|