Some checks failed
Go / build-and-release (push) Has been cancelled
- Add web app manifest for standalone installation - Add service worker with offline-first caching for static assets - Add network-first caching with fallback for API calls - Generate PWA icons (192x192, 512x512) from favicon - Add Apple PWA meta tags for iOS support - Update rollup config to copy PWA files to dist Files modified: - app/web/public/manifest.json: New PWA manifest - app/web/public/sw.js: New service worker - app/web/public/icon-192.png: New PWA icon - app/web/public/icon-512.png: New PWA icon - app/web/public/index.html: Add manifest link, meta tags, SW registration - app/web/rollup.config.js: Add PWA files to copy targets - pkg/version/version: Bump to v0.43.1 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<meta name="color-scheme" content="light dark" />
|
|
|
|
<title>ORLY?</title>
|
|
|
|
<style>
|
|
:root {
|
|
color-scheme: light dark;
|
|
}
|
|
html, body {
|
|
background-color: #fff;
|
|
color: #000;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
html, body {
|
|
background-color: #000;
|
|
color: #fff;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<link rel="apple-touch-icon" href="/icon-192.png" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
|
<link rel="stylesheet" href="/global.css" />
|
|
<link rel="stylesheet" href="/bundle.css" />
|
|
|
|
<script defer src="/bundle.js"></script>
|
|
</head>
|
|
|
|
<body></body>
|
|
<script>
|
|
if ('serviceWorker' in navigator) {
|
|
navigator.serviceWorker.register('/sw.js');
|
|
}
|
|
</script>
|
|
</html>
|