mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-07-30 19:36:01 +00:00
- will-navigate/window-open denied; openExternal restricted to http(s); production CSP drops 'unsafe-inline' scripts (dev-only Vite plugin re-adds it for the Fast Refresh preamble) - single-instance lock; before-quit reaps in-flight CLI children; 16MB output cap rejects with CliError 'too-large' - read-only CLI spawns coalesce: concurrent identical calls share one child, a 5s result cache absorbs same-cadence pollers (six sections polled getOverview independently); actions bypass and flush the cache on completion so post-action refetches are fresh - every renderer-supplied argv string validated (period/provider/range/ currency allowlists, no flag-shaped tokens, absolute export path) with new CliError kind 'bad-args'; envelope + action stderr routed through sanitizeError - quota force-refresh: manual refresh (refreshToken) passes force which invalidates QuotaService's cache; steady polls do not - POSIX credential mode check gated off on win32 App suite 190/190, build green (production index.html verified strict).
34 lines
937 B
HTML
34 lines
937 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta
|
|
http-equiv="Content-Security-Policy"
|
|
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self'; connect-src 'self' ws://localhost:5173 http://localhost:5173"
|
|
/>
|
|
<title>CodeBurn</title>
|
|
<style>
|
|
/* App-shell glue only — indigo.css is the verbatim wireframe port.
|
|
Make the window fill the OS window instead of the doc-page card. */
|
|
html,
|
|
body,
|
|
#root {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
#root {
|
|
display: flex;
|
|
}
|
|
.win {
|
|
flex: 1;
|
|
min-width: 0;
|
|
border-radius: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="./main.tsx"></script>
|
|
</body>
|
|
</html>
|