mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-06 03:15:48 -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
37 lines
463 B
Plaintext
37 lines
463 B
Plaintext
# IDE, Other files
|
|
.vscode
|
|
.idea
|
|
.claude/
|
|
rust-sdl2-emscripten/
|
|
|
|
# Build files
|
|
target/
|
|
dist/
|
|
emsdk/
|
|
node_modules/
|
|
|
|
# Emscripten build outputs (generated by cargo build)
|
|
web/public/pacman.data
|
|
web/public/pacman.js
|
|
web/public/pacman.wasm
|
|
web/public/pacman.wasm.map
|
|
|
|
# Site build f iles
|
|
tailwindcss-*
|
|
pacman/assets/site/build.css
|
|
|
|
# Coverage reports
|
|
lcov.info
|
|
codecov.json
|
|
coverage.html
|
|
|
|
# Profiling output
|
|
flamegraph.svg
|
|
/profile.*
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Sensitive
|
|
*.env
|