mirror of
https://github.com/danbulant/nollup-bug
synced 2026-05-19 04:18:40 +00:00
16 lines
No EOL
374 B
HTML
16 lines
No EOL
374 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Barebones</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script>
|
|
const worker = new SharedWorker("/sharedworker.js");
|
|
worker.port.start();
|
|
worker.port.postMessage("test");
|
|
</script>
|
|
</body>
|
|
</html> |