Files
picoforge/src/app.html
Suyog Tandel 406e0213d2 feat: add svelte code formatting config and orgnaise frontend code
- Added code formatting config for svelte, ts, js and svelte.ts files
- Reorganised the monolith +page.svelte into different reactive components using runes. Placed in src/lib/
- Formatted the frontend code for consistency.
- Added env variable in release workflow so that system lib libpcsclite.so.1 is not included in appimage bundle.
- Added minimum app window width and height config in tauri.conf.json
2026-01-09 02:36:06 +05:30

14 lines
390 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Pico Forge</title>
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>