alpha
Login
or
Join now
dunkirk.sh
/
myrus
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: move web to src
author
Kieran Klukas
date
1 year ago
(Mar 16, 2025, 12:46 AM -0400)
commit
1fc50d23
1fc50d23ef721ab3094105a32f4e58b16ce79ffb
parent
a84ccc96
a84ccc962b8a7e2dbe9511a00f5030e4d200e6a1
+2
-2
4 changed files
Expand all
Collapse all
Unified
Split
index.html
src
global.css
index.ts
tsconfig.json
+1
-1
index.html
Reviewed
···
70
70
</head>
71
71
<body>
72
72
<div id="app"></div>
73
73
-
<script type="module" src="/server/main.ts"></script>
73
73
+
<script type="module" src="/src/index.ts"></script>
74
74
</body>
75
75
</html>
server/global.css
src/global.css
Reviewed
server/main.ts
src/index.ts
Reviewed
+1
-1
tsconfig.json
Reviewed
···
20
20
"noFallthroughCasesInSwitch": true,
21
21
"noUncheckedSideEffectImports": true
22
22
},
23
23
-
"include": ["server"]
23
23
+
"include": ["src"]
24
24
}