Playtester build

This commit is contained in:
Pyrex 2025-02-23 21:12:54 -08:00
parent 02d32266e9
commit 7d0e5566f8
7 changed files with 13 additions and 3 deletions

View File

@ -2,7 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<title>Prototype 2</title> <title>FLEDGLING</title>
</head> </head>
<body> <body>
<canvas id="game" style="cursor: none"></canvas> <canvas id="game" style="cursor: none"></canvas>

BIN
packaging/gif1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

BIN
packaging/gif2.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

BIN
packaging/gif3.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

BIN
packaging/thumbnail.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,9 +1,9 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2020", "target": "ES2024",
"useDefineForClassFields": true, "useDefineForClassFields": true,
"module": "ESNext", "module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"], "lib": ["ES2024", "DOM", "DOM.Iterable"],
"skipLibCheck": true, "skipLibCheck": true,
/* Bundler mode */ /* Bundler mode */

10
vite.config.js Normal file
View File

@ -0,0 +1,10 @@
// vite.config.js
import { defineConfig } from 'vite'
export default defineConfig({
base: '',
minify: false,
build: {
target: "esnext"
}
})