diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-09-07 17:29:53 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-09-07 17:29:53 +0200 |
| commit | 8182a08f60e88595984ba80b472f29ccf53c19bd (patch) | |
| tree | c377ad8a7d43b8794b5df0f7283f71ac24408210 /src/frontend/index.html | |
| parent | 577a6f00a0f006ca51276ae606835c2d892da872 (diff) | |
feat: Enhance development scripts and add Angular support
- Added new scripts for Angular development and formatting in package.json.
- Updated workspaces to include Angular frontend.
- Modified backend project file to exclude specific views from content inclusion.
- Updated logging settings in appsettings.json to include HttpClient warnings.
- Refactored TimetableTable component for cleaner rendering.
- Removed UpdateNotification component and related service worker management code.
- Simplified service worker registration in root component.
- Cleaned up settings page by removing update management functionality.
- Improved stoplist component structure for better readability.
- Updated PWA worker to streamline caching and response handling.
Diffstat (limited to 'src/frontend/index.html')
| -rw-r--r-- | src/frontend/index.html | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/src/frontend/index.html b/src/frontend/index.html deleted file mode 100644 index 24697c0..0000000 --- a/src/frontend/index.html +++ /dev/null @@ -1,56 +0,0 @@ -<!doctype html> -<html lang="es"> - <head> - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta charset="UTF-8" /> - - <title>UrbanoVigo Web</title> - - <link rel="icon" type="image/jpg" href="/logo-512.jpg" /> - <link rel="icon" href="/favicon.ico" sizes="64x64" /> - <link rel="apple-touch-icon" href="/logo-512.jpg" sizes="512x512" /> - <meta name="theme-color" content="#007bff" /> - - <link rel="canonical" href="https://urbanovigo.costas.dev/" /> - - <meta - name="description" - content="Aplicación web para encontrar paradas y tiempos de llegada de los autobuses urbanos de Vigo, España." - /> - <meta - name="keywords" - content="Vigo, autobús, urbano, parada, tiempo, llegada, transporte, público, España" - /> - <meta name="author" content="Ariel Costas Guerrero" /> - - <meta property="og:title" content="UrbanoVigo Web" /> - <meta property="og:type" content="website" /> - <meta property="og:url" content="https://urbanovigo.costas.dev/" /> - <meta - property="og:image" - content="https://urbanovigo.costas.dev/logo-512.jpg" - /> - <meta - property="og:description" - content="Aplicación web para encontrar paradas y tiempos de llegada de los autobuses urbanos de Vigo, España." - /> - - <link rel="manifest" href="/manifest.webmanifest" /> - - <meta name="robots" content="noindex, nofollow" /> - <meta name="googlebot" content="noindex, nofollow" /> - - <style> - body { - margin: 0; - padding: 0; - box-sizing: border-box; - } - </style> - </head> - - <body> - <div id="root"></div> - <script type="module" src="/src/main.tsx"></script> - </body> -</html> |
