|
@@ -33,5 +33,19 @@
|
|
|
let documentCtx = document.documentElement
|
|
|
documentCtx.style.fontSize = documentCtx.clientWidth / 10 + 'px'
|
|
|
}
|
|
|
+ // 加载调试工具
|
|
|
+ ;(function () {
|
|
|
+ var host = window.location.host
|
|
|
+ var domain = host.substring(0, host.indexOf('.')) || host.substring(0, host.indexOf(':'))
|
|
|
+ var el = document.createElement('script')
|
|
|
+ var src = '//cdn.jsdelivr.net/npm/eruda@2.4.1/eruda.js'
|
|
|
+ el.src = src
|
|
|
+ if (/^0|192|10|localhost|test/.test(domain)) {
|
|
|
+ document.body.appendChild(el)
|
|
|
+ el.onload = function () {
|
|
|
+ eruda.init()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })()
|
|
|
</script>
|
|
|
</html>
|