mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-06 03:15:48 -06:00
18 lines
423 B
TypeScript
18 lines
423 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.",
|
|
|
|
extends: vikeReact,
|
|
} satisfies Config;
|