Skip to content

Commit 4b8fdff

Browse files
committed
Updates
0 parents  commit 4b8fdff

8 files changed

Lines changed: 119 additions & 0 deletions

File tree

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Dependencies
2+
node_modules/
3+
bun.lockb
4+
bun.lock
5+
6+
# Build output
7+
dist/
8+
build/
9+
*.local
10+
11+
# Environment
12+
.env
13+
.env.local
14+
.env.*.local
15+
16+
# Logs
17+
*.log
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*
21+
pnpm-debug.log*
22+
lerna-debug.log*
23+
24+
# Editor / OS
25+
.DS_Store
26+
.vscode/
27+
.idea/
28+
*.swp
29+
*.swo
30+
*~
31+
Thumbs.db
32+
33+
# Cache
34+
.cache/
35+
.turbo/
36+
.eslintcache
37+
38+
# Coverage / test
39+
coverage/
40+
*.lcov
41+
.nyc_output/

_redirects

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[build]
2+
command = "bun run build"
3+
publish = "dist"
4+
5+
[[redirects]]
6+
from = "/*"
7+
to = "/index.html"
8+
status = 200

assets/DocSectionView-BEHUn5zE.css

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/DocSectionView-CnQXTMhq.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/index-CVz4R4eo.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/index-CeyWP-Bf.js

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

favicon.svg

Lines changed: 4 additions & 0 deletions
Loading

index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/forgezero-docs/favicon.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta name="description" content="ForgeZero (fz) — zero-overhead build tool for assembly, C, and Gloria documentation" />
8+
<title>ForgeZero Documentation</title>
9+
<script type="module" crossorigin src="/forgezero-docs/assets/index-CeyWP-Bf.js"></script>
10+
<link rel="stylesheet" crossorigin href="/forgezero-docs/assets/index-CVz4R4eo.css">
11+
</head>
12+
<body>
13+
<div id="app"></div>
14+
</body>
15+
</html>

0 commit comments

Comments
 (0)