mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-05 23:15:40 -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
18 lines
441 B
TypeScript
18 lines
441 B
TypeScript
import type { Config } from "vike/types";
|
|
import vikeReact from "vike-react/config";
|
|
import Layout from "../layouts/LayoutDefault.js";
|
|
|
|
// Default config (can be overridden by pages)
|
|
// https://vike.dev/config
|
|
|
|
export default {
|
|
// https://vike.dev/Layout
|
|
Layout,
|
|
|
|
// https://vike.dev/head-tags
|
|
title: "Pac-Man",
|
|
description: "A Pac-Man game built with Rust and React.",
|
|
prerender: true,
|
|
extends: vikeReact,
|
|
} satisfies Config;
|