fix: broken import paths, illegal import in function body, local fonts for Docker
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m23s

This commit is contained in:
Refactoring Agent
2026-05-05 20:23:47 +02:00
parent ed69a8f2b4
commit b0cc848909
6 changed files with 13 additions and 10 deletions
+7 -7
View File
@@ -1,18 +1,18 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import localFont from "next/font/local";
import "./globals.css";
import { Toaster } from "@/components/ui/toaster";
import { GameToaster } from "@/components/game/GameToast";
import { DebugProvider } from "@/lib/game/debug-context";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
const geistSans = localFont({
src: '../../public/fonts/GeistVF.woff',
variable: '--font-geist-sans',
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
const geistMono = localFont({
src: '../../public/fonts/GeistMonoVF.woff',
variable: '--font-geist-mono',
});
export const metadata: Metadata = {