1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
- <title><%= htmlWebpackPlugin.options.title %></title>
- <!-- <script>
- !function(d,a){var e=d.documentElement,c="orientationchange"in window?"orientationchange":"resize",v=function(){
- var f=e.clientWidth, ratio=1;
- if(f > 750 && f < 1300) {
- f = 1300;
- ratio = 1920 / 750;
- }
- if(f >= 1300) {
- f = 1920;
- ratio = 1920 / 750;
- }
- var p=20*(f/320) / ratio
- f&&(e.style.fontSize=p+"px")
- };d.addEventListener&&(a.addEventListener(c,v,!1),d.addEventListener("DOMContentLoaded",v,!1))}(document,window);
- </script> -->
- </head>
- <body>
- <div id="app"></div>
- <script>
- window.EOS_PROTOCOL = 'https'
- window.EOS_HOST = 'proxy.eosnode.tools'
- window.EOS_PORT = '443'
- // if ('serviceWorker' in navigator) {
- // window.addEventListener('load', function () {
- // navigator.serviceWorker.register('/sw.js')
- // .then(function (registration) {
- // console.log('ServiceWorker registration successful')
- // // console.log('ServiceWorker registration successful with scope: ', registration.scope)
- // })
- // .catch(function (err) {
- // console.log('ServiceWorker registration failed: ', err)
- // })
- // })
- // }
- </script>
- <!-- built files will be auto injected -->
- </body>
- </html>
|