mirror of
https://github.com/librekeys/picoforge.git
synced 2026-04-14 08:44:16 -07:00
406e0213d2
- 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
14 lines
390 B
HTML
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>
|