forked from trent_larson/crowd-funder-for-time-pwa
- Implement worker-only database access to eliminate double migrations - Add parameter serialization in usePlatformService to prevent Capacitor "object could not be cloned" errors - Fix infinite logging loop with circuit breaker in databaseUtil - Use dynamic imports in WebPlatformService to prevent worker thread errors - Add higher-level database methods (getContacts, getSettings) to composable - Eliminate Vue Proxy objects through JSON serialization and Object.freeze protection Resolves Proxy(Array) serialization failures and worker context conflicts across Web/Capacitor/Electron platforms.
19 lines
590 B
HTML
19 lines
590 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- SharedArrayBuffer support headers for absurd-sql -->
|
|
<meta http-equiv="Cross-Origin-Opener-Policy" content="same-origin" />
|
|
<meta http-equiv="Cross-Origin-Embedder-Policy" content="require-corp" />
|
|
|
|
<title>Time Safari</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.web.ts"></script>
|
|
</body>
|
|
</html>
|