index.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="">
  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" />
  7. <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
  8. <title><%= htmlWebpackPlugin.options.title %></title>
  9. <script src="./weixin.js"></script>
  10. <script src="./webView.js"></script>
  11. <script>
  12. document.addEventListener('UniAppJSBridgeReady', function(e) {
  13. // uni.getEnv(function(res) {
  14. // console.log('当前环境:' + JSON.stringify(res))
  15. // })
  16. // 向uniapp底座发送消息
  17. // uni.postMessage({
  18. // data: { url: res.data.filename.file, name: res.data.filename.name }
  19. // })
  20. })
  21. </script>
  22. </head>
  23. <body>
  24. <noscript>
  25. <strong
  26. >We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to
  27. continue.</strong
  28. >
  29. </noscript>
  30. <div id="app"></div>
  31. <!-- built files will be auto injected -->
  32. </body>
  33. </html>