大数据展示系统-前端
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.

31 lines
1.0 KiB

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