mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 00:10:11 -05:00
607deb31dc
Mainly leave shadow-cljs for build cljs stuff and use esbuild for bundle all js dependencies, completly avoiding all possible incompatibility issues between js libraries and google closure compiler.
27 lines
665 B
Text
27 lines
665 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Penpot - Rasterizer</title>
|
|
<link rel="icon" href="images/favicon.png" />
|
|
|
|
<script>
|
|
window.penpotVersion = "%version%";
|
|
window.penpotBuildDate = "%buildDate%";
|
|
</script>
|
|
|
|
{{# manifest}}
|
|
<script>window.penpotWorkerURI="{{& worker_main}}"</script>
|
|
<script src="{{& config}}"></script>
|
|
<script src="{{& polyfills}}"></script>
|
|
{{/manifest}}
|
|
|
|
</head>
|
|
<body>
|
|
{{# manifest}}
|
|
<script src="js/libs.js?ts={{& ts}}"></script>
|
|
<script src="{{& shared}}"></script>
|
|
<script src="{{& rasterizer}}"></script>
|
|
{{/manifest}}
|
|
</body>
|
|
</html>
|