mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-06 05:15:49 -06:00
- Replace Mantine UI components with Tailwind CSS v4 - Migrate from static HTML to Vike-based SSR framework - Disable SSR for game page (Emscripten requires browser environment) - Simplify Emscripten loading to avoid hydration conflicts - Remove Tailwind download logic from web.build.ts - Add package manager lockfiles for reproducible builds - Update .gitignore for node_modules and build artifacts
10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
// https://vike.dev/Head
|
|
|
|
export default function HeadDefault() {
|
|
return (
|
|
<>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</>
|
|
);
|
|
}
|