feat: Add a Vite server and proxy all non-route requests to it

This commit is contained in:
Jesse Wierzbinski 2023-12-03 15:25:55 -10:00
parent 53ac9f6745
commit 14d96ac9e6
No known key found for this signature in database
12 changed files with 138 additions and 446 deletions

16
pages/index.html Normal file
View file

@ -0,0 +1,16 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue + TS</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="./main.ts"></script>
</body>
</html>