Engine/apps/frontend/index.html
Jo 0db7875bc1 [backend/frontend/shared] server-side plugins and basic spa frontend
feat(backend): finish server-side plugin system
feat(frontend): implement basic frontend with typescript, vite, vue and vue-router
feat(shared/plugins): implement example-plugin, to showcase the server-side plugin implementation
feat(shared/plugins): implement base file-structure for client-side plugins
2024-06-28 14:56:29 +02:00

18 lines
No EOL
628 B
HTML

<!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_APP_TITLE%</title>
<meta property="og:title" content="%VITE_APP_TITLE%" />
<meta property="og:description" content="%VITE_APP_DESC%" />
<meta property="og:type" content="website" />
<meta property="og:url" content="%VITE_APP_URL" />
<meta property="og:image" content="%VITE_APP_TITLE%/vite.png" />
</head>
<body>
<div id="app"></div>
<script type="module" src="./src/main.ts"></script>
</body>
</html>