forked from mystiq/hydrogen-web
ceb0b5793b
it's missing still: - non-css assets like the download sandbox and the olm worker aren't written for some reason - the es and cjs lib.js entry points end up in assets with a hash for some reason - in these entry files, apart from our exports, something is adding an import statement for every import that was found in the tree - all assets are hashed even though the config tries to disable that - tests are included
16 lines
522 B
HTML
16 lines
522 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
<link rel="stylesheet" type="text/css" href="./platform/web/ui/css/main.css">
|
|
<link rel="stylesheet" type="text/css" href="./platform/web/ui/css/themes/element/theme.css">
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
export * from "./lib.ts";
|
|
import downloadSandboxPath from "./platform/web/assets/download-sandbox.html?url";
|
|
import workerPath from "./platform/web/worker/main.js?url";
|
|
</script>
|
|
</body>
|
|
</html>
|