Skip to content

Commit c514876

Browse files
authored
feat: Hono JSXによるSSGのプロジェクトを追加 (#117)
1 parent c2402cf commit c514876

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+32776
-0
lines changed

website/.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 2
8+
indent_style = space
9+
insert_final_newline = true
10+
max_line_length = 80
11+
12+
[*.md]
13+
max_line_length = 0

website/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
dist/
3+
public/assets/docs

website/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# website
2+
3+
## Develop
4+
5+
```sh
6+
bun run dev
7+
```
8+
9+
## Build
10+
11+
```sh
12+
bun run build
13+
```
14+
15+
## Preview
16+
17+
```sh
18+
bun run preview
19+
```

website/bun.lockb

26.1 KB
Binary file not shown.

website/package.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"private": true,
3+
"type": "module",
4+
"scripts": {
5+
"dev": "vite dev",
6+
"build": "vite build",
7+
"preview": "vite preview"
8+
},
9+
"devDependencies": {
10+
"@hono/vite-dev-server": "^0.19.0",
11+
"@hono/vite-ssg": "^0.1.2",
12+
"@types/bun": "latest",
13+
"hono": "^4.6.13",
14+
"vite": "^6.2.5"
15+
}
16+
}

website/public/assets/favicon.ico

14.7 KB
Binary file not shown.
132 KB
Binary file not shown.
23.4 KB
Binary file not shown.
35 KB
Binary file not shown.
33.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)