threepipe
Version:
A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility.
24 lines (20 loc) • 595 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Basic Lib Import Test</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Import maps polyfill -->
<!-- Remove this when import maps will be widely supported -->
<script async src="https://unpkg.com/es-module-shims@1.6.3/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"threepipe": "./../../dist/index.mjs"
}
}
</script>
<script type="module" src="./script.js"></script>
</head>
<body>
</body>