You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the source code for my personal website, [01397.dev](https://01397.dev).
6
+
7
+
## File sources
8
+
9
+
### HTML files
10
+
11
+
HTML files are generated from `src/pages/*.tsx` files. React is used as the templating engine. The generated HTML files don't include any React or JavaScript code. The output code is formatted with Prettier.
12
+
13
+
```mermaid
14
+
graph LR;
15
+
A[src/pages/*.tsx] -->|React| B[Static HTML]
16
+
B -->|Prettier| C[Formatted HTML]
17
+
```
18
+
19
+
### Static files
20
+
21
+
Copied from `public/*` files to `/dist` directory.
0 commit comments