Ionic + React accounts android app and PWA
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

index.html 1.2 KiB

il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Ionic App</title>
  6. <base href="/" />
  7. <meta name="color-scheme" content="light dark" />
  8. <meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  9. <meta name="format-detection" content="telephone=no" />
  10. <meta name="msapplication-tap-highlight" content="no" />
  11. <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
  12. <link rel="shortcut icon" type="image/png" href="%PUBLIC_URL%/assets/icon/favicon.png" />
  13. <!-- add to homescreen for ios -->
  14. <meta name="apple-mobile-web-app-capable" content="yes" />
  15. <meta name="apple-mobile-web-app-title" content="Ionic App" />
  16. <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  17. <link rel="preconnect" href="https://fonts.googleapis.com">
  18. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  19. <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
  20. rel="stylesheet">
  21. </head>
  22. <body>
  23. <div id="root"></div>
  24. </body>
  25. </html>