mirror of
https://github.com/diced/zipline.git
synced 2025-12-29 14:14:02 -08:00
* feat: start removing next.js * feat: working ssr + dev + prod env * feat: all functionality added + client/ -> src/client/ * fix: build process * fix: caching on pnpm action * fix: ignores + cache action * fix: docker + exdev error * fix: generate prisma before types * fix: remove node@20 from actions * feat: dynamic import optimizations + titled pages * fix: removed unused vars * feat: small ui fixes and improvements * feat: small ui improvements * fix: linting error * fix: regex when adding domains
13 lines
327 B
HTML
13 lines
327 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<!--zipline-ssr-meta-->
|
|
</head>
|
|
<body>
|
|
<div id="root"><!--zipline-ssr-insert--></div>
|
|
<script type="module" src="/ssr-view/client.tsx"></script>
|
|
</body>
|
|
</html>
|