first commit

This commit is contained in:
2026-03-14 20:49:11 -04:00
commit 08768723bc
31 changed files with 8984 additions and 0 deletions

22
public/manifest.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "TruckNet",
"short_name": "TruckNet",
"description": "The Modern CB Radio for Truck Drivers",
"theme_color": "#1a1a2e",
"background_color": "#1a1a2e",
"display": "fullscreen",
"orientation": "any",
"start_url": "/",
"icons": [
{
"src": "/icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}

View File

@@ -0,0 +1 @@
export default window.maplibregl;

4
public/sw.js Normal file
View File

@@ -0,0 +1,4 @@
// This file is a placeholder. The real service worker is generated by vite-plugin-pwa at build time.
// During development, this file is served as-is and the PWA plugin registers its own sw.
self.addEventListener('install', () => self.skipWaiting());
self.addEventListener('activate', () => self.clients.claim());