mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 05:35:13 +00:00
fix return error
This commit is contained in:
parent
fab1326cd8
commit
fac79cb091
@ -6,10 +6,6 @@
|
||||
<meta charset="utf-8">
|
||||
<link rel="prefetch" href="/nuxt.sw.js">
|
||||
<script>
|
||||
if (location.host !== 'localhost' && location.protocol === 'http:') {
|
||||
return location.replace(location.href.replace('http://', 'https://'))
|
||||
}
|
||||
|
||||
async function reload() {
|
||||
const html = await fetch(window.location.href).then(r => r.text())
|
||||
if (html.includes('<!-- SW_INIT-->')) {
|
||||
@ -31,7 +27,11 @@
|
||||
})
|
||||
}
|
||||
|
||||
register()
|
||||
if (location.host !== 'localhost' && location.protocol === 'http:') {
|
||||
location.replace(location.href.replace('http://', 'https://'))
|
||||
} else {
|
||||
register()
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user