index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  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 http-equiv="Content-Security-Policy" content="default-src * 'self' 'unsafe-inline' 'unsafe-eval' data: content:">
  14. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, viewport-fit=cover">
  15. <meta name="theme-color" content="#007aff">
  16. <meta name="format-detection" content="telephone=no">
  17. <meta name="msapplication-tap-highlight" content="no">
  18. <title>plaid</title>
  19. <meta name="apple-mobile-web-app-capable" content="yes">
  20. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
  21. <link rel="apple-touch-icon" href="icons/apple-touch-icon.png">
  22. <link rel="icon" href="icons/favicon.png">
  23. <!-- built styles file will be auto injected -->
  24. </head>
  25. <body>
  26. <div id="app"></div>
  27. <script type="module" src="./js/app.js"></script>
  28. </body>
  29. </html>