index.html
419 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>artshop-frontend</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<script type="module">
import init from '/static/ui/artshop_frontend.js';
window.addEventListener('load', async () => {
await init();
});
</script>
</body>
</html>