Prepare for an eventual frontend
Move the backend code into a backend/ directory, and create a frontend/ directory containing an empty sveltekit project.
This commit is contained in:
parent
d65efebb44
commit
df7d4f3507
25 changed files with 461 additions and 2 deletions
11
frontend/src/app.html
Normal file
11
frontend/src/app.html
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
<div style="display: contents">%sveltekit.body%</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue