diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-10-07 12:37:48 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-10-07 12:37:48 +1100 |
| commit | 1c69c4abf6e54ccab886c23cd6e691179ce6f076 (patch) | |
| tree | dfc4652254184d17ec05ead55bdc5ee5c04376bc /index.html | |
| parent | 141f310d87f4fd7c3a4c728bf278c10fadc19606 (diff) | |
Install client side tools
Install and configure Vite, Vue, Tailwind, Pinia, Typescript, and ESLint
Add basic framework files (index.html, App.vue, main.ts, etc)
Update READMEs
Add favicon, font, and LICENCE.txt
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..09d25a7 --- /dev/null +++ b/index.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>Histplorer</title> + <link rel="icon" href="/favicon.png" /> + <link rel="preload" href="/font/Ubuntu-Regular.woff2" as="font" type="font/woff2" crossorigin/> + </head> + <body> + <div id="app"></div> + <script type="module" src="/src/main.ts"></script> + </body> +</html> |
