Skip to content

Commit d6f6c4b

Browse files
committed
Merge remote-tracking branch 'template/main'
2 parents 1fcf9bf + 7da8835 commit d6f6c4b

File tree

6 files changed

+1326
-390
lines changed

6 files changed

+1326
-390
lines changed

.yarn/releases/yarn-4.9.1.cjs

Lines changed: 948 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
nodeLinker: node-modules
2+
3+
yarnPath: .yarn/releases/yarn-4.9.1.cjs

index.html

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/png" href="/assets/switchy/hello.png" />
6+
<meta
7+
name="viewport"
8+
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
9+
/>
10+
<meta name="apple-mobile-web-app-capable" content="yes" />
11+
<meta name="mobile-web-app-capable" content="yes" />
12+
<title>Gamejam</title>
13+
</head>
314

4-
<head>
5-
<meta charset="UTF-8" />
6-
<link rel="icon" type="image/png" href="/assets/switchy/hello.png" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
8-
<meta name="apple-mobile-web-app-capable" content="yes">
9-
<meta name="mobile-web-app-capable" content="yes">
10-
<title>Gamejam</title>
11-
</head>
12-
13-
<body style="margin: 0; padding: 0; width: 100%; height: 100%; overflow: hidden;">
14-
<div id="root"></div>
15-
<script type="module" src="/src/main.tsx"></script>
16-
</body>
17-
18-
</html>
15+
<body
16+
style="margin: 0; padding: 0; width: 100%; height: 100%; overflow: hidden"
17+
>
18+
<div id="root"></div>
19+
<script type="module" src="/src/main.tsx"></script>
20+
</body>
21+
</html>

public/assets/switchy/hello.png

71.6 KB
Loading

vite.config.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
import { defineConfig } from 'vite'
2-
import react from '@vitejs/plugin-react'
1+
import { defineConfig } from "vite";
2+
import react from "@vitejs/plugin-react";
33

44
// https://vite.dev/config/
55
export default defineConfig({
6+
// This needs to be the name of the repo to host the game on github pages
7+
base: "/switchy-tax-fraud/",
68
plugins: [react()],
7-
})
9+
});

0 commit comments

Comments
 (0)