feat: setup 'web' frontend

This commit is contained in:
Ryan Walters
2025-09-25 12:37:21 -05:00
parent c524fdb3e7
commit 55b31ba31e
19 changed files with 950 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
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;