19 lines
391 B
Handlebars
19 lines
391 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>
|
|
Test bundle!
|
|
</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="icon" href="./assets/logo-sq.svg">
|
|
|
|
{{{ head }}}
|
|
</head>
|
|
<body>
|
|
<div id="root">Here the app should load!</div>
|
|
<script src="./index.mjs" type="module"></script>
|
|
</body>
|
|
</html>
|