index.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <!--
  6. Customize this policy to fit your own app's needs. For more guidance, please refer to the docs:
  7. https://cordova.apache.org/docs/en/latest/
  8. Some notes:
  9. * https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly
  10. * Disables use of inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:
  11. * Enable inline JS: add 'unsafe-inline' to default-src
  12. -->
  13. <meta
  14. http-equiv="Content-Security-Policy"
  15. content="default-src * 'self' 'unsafe-inline' 'unsafe-eval' data: content:"
  16. />
  17. <meta
  18. name="viewport"
  19. content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, viewport-fit=cover"
  20. />
  21. <meta name="theme-color" content="#007aff" />
  22. <meta name="format-detection" content="telephone=no" />
  23. <meta name="msapplication-tap-highlight" content="no" />
  24. <title>plaid</title>
  25. <meta name="apple-mobile-web-app-capable" content="yes" />
  26. <meta
  27. name="apple-mobile-web-app-status-bar-style"
  28. content="black-translucent"
  29. />
  30. <link rel="apple-touch-icon" href="icons/apple-touch-icon.png" />
  31. <link rel="icon" href="icons/favicon.png" />
  32. <!-- built styles file will be auto injected -->
  33. </head>
  34. <body>
  35. <div id="app"></div>
  36. <script type="module" src="./js/app.js"></script>
  37. </body>
  38. </html>