the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
at main 28 lines 928 B view raw
1<!doctype html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <link rel="icon" type="image/png]" href="/favicon.png" /> 6 <link rel="stylesheet" href="/notyf.min.css" /> 7 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 8 <title>Pocketenv</title> 9 <script> 10 // Prevent flash of unstyled content (FOUC) for dark mode 11 (function () { 12 /* const theme = 13 localStorage.getItem("theme") || 14 (window.matchMedia("(prefers-color-scheme: dark)").matches 15 ? "dark" 16 : "light");*/ 17 const theme = "dark"; 18 document.documentElement.classList.add(theme); 19 document.documentElement.setAttribute("data-theme", theme); 20 })(); 21 </script> 22 </head> 23 <body> 24 <div id="root"></div> 25 <script type="module" src="/src/main.tsx"></script> 26 <script type="module" src="/notyf.min.js"></script> 27 </body> 28</html>