大数据展示系统-前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.1 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="referrer" content="no-referrer">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no">
  8. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  9. <script>
  10. window.onload = function() {
  11. document.addEventListener('touchstart', function(event) {
  12. if (event.touches.length > 1) {
  13. event.preventDefault()
  14. }
  15. },
  16. { passive: false }
  17. )
  18. document.addEventListener('gesturestart', function(event) {
  19. event.preventDefault()
  20. })
  21. }
  22. </script>
  23. <title><%= htmlWebpackPlugin.options.title %></title>
  24. </head>
  25. <body>
  26. <noscript>
  27. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  28. </noscript>
  29. <div id="app"></div>
  30. <!-- built files will be auto injected -->
  31. </body>
  32. </html>