This commit is contained in:
Bastien Wirtz 2022-06-05 21:50:28 +02:00
parent e03e759285
commit 10f6f123e8
2 changed files with 8 additions and 5 deletions

View File

@ -56,15 +56,18 @@ export default {
// extra check to make sure we're not offline
let that = this;
const aliveCheckUrl = window.location.href + "?t="+(new Date().valueOf());
const aliveCheckUrl = window.location.href + "?t=" + new Date().valueOf();
return fetch(aliveCheckUrl, {
method: "HEAD",
cache: "no-store",
redirect: "manual"
redirect: "manual",
})
.then(function (response) {
// opaqueredirect means request has been redirected, to auth provider probably
if ((response.type === "opaqueredirect" && !response.ok) || [401, 403].indexOf(response.status) != -1) {
if (
(response.type === "opaqueredirect" && !response.ok) ||
[401, 403].indexOf(response.status) != -1
) {
window.location.href = aliveCheckUrl;
}
that.offline = !response.ok;

View File

@ -27,6 +27,6 @@ module.exports = {
},
},
devServer: {
disableHostCheck: true
disableHostCheck: true,
},
};