Fix backend url
This commit is contained in:
parent
7daf646488
commit
c82a24756b
@ -8,8 +8,6 @@
|
|||||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
|
||||||
rel="stylesheet">
|
rel="stylesheet">
|
||||||
<title>PseudoSubs</title>
|
<title>PseudoSubs</title>
|
||||||
<script>const url = new URL(window.location.href);if (url.hostname.search("pseudosubs") !== -1 && (url.protocol === "http:" || url.hostname.search("www") !== -1)) {window.location.replace("https://beta.pseudosubs.com");}</script>
|
|
||||||
<script src="https://apis.google.com/js/api:client.js"></script>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript>
|
<noscript>
|
||||||
|
@ -1,41 +1 @@
|
|||||||
/* eslint-disable no-console */
|
/* eslint-disable no-console */
|
||||||
|
|
||||||
import { register } from 'register-service-worker'
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Claves VAPID
|
|
||||||
* Publica: BPA_MfechJ8EwyMC_5-GZsWFtjPCD6f2qAzW5ouxnMs73mGTsgtD47of0pO1rKtpyWiWKE8yZVHHzTGhLHbfVRI
|
|
||||||
* Privada: 6dOp0WChG-fLFSo9hRnMUn5S1BVBm3KhK9r0m4L-GoA
|
|
||||||
* */
|
|
||||||
|
|
||||||
if (process.env.NODE_ENV === 'production' || true) {
|
|
||||||
register(`${process.env.BASE_URL}service-worker.js`, {
|
|
||||||
ready() {
|
|
||||||
console.log(
|
|
||||||
'PseudoSubs está siendo servida desde un service worker.\n' +
|
|
||||||
'Para saber más visita https://goo.gl/AFskqB'
|
|
||||||
)
|
|
||||||
},
|
|
||||||
registered(registration) {
|
|
||||||
console.log('Se ha registrado el Service worker.');
|
|
||||||
},
|
|
||||||
cached() {
|
|
||||||
console.log('Se ha cacheado el contenido para su uso sin internet.')
|
|
||||||
},
|
|
||||||
updatefound() {
|
|
||||||
console.log('Descargando nuevo contenido.')
|
|
||||||
},
|
|
||||||
updated() {
|
|
||||||
console.log('Hay nuevo contenido disponible, recarga la página.');
|
|
||||||
// window.location.reload(true);
|
|
||||||
},
|
|
||||||
offline() {
|
|
||||||
console.log('No hay conexion a internet. ' +
|
|
||||||
'PseudoSubs se está ejecutando en modo sin internet.')
|
|
||||||
},
|
|
||||||
error(error) {
|
|
||||||
console.error('Error al registrar el service worker:', error)
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
|
@ -15,7 +15,7 @@ almacenarEnLocalStorage = (clave, valor, fnActualizar) =>
|
|||||||
export default new Vuex.Store
|
export default new Vuex.Store
|
||||||
state:
|
state:
|
||||||
servidor: ""
|
servidor: ""
|
||||||
servidor2: "http://localhost:3485"
|
servidor2: "https://pseudosubs-v1.araozu.dev"
|
||||||
|
|
||||||
animes:
|
animes:
|
||||||
if localStorage?
|
if localStorage?
|
||||||
|
Loading…
Reference in New Issue
Block a user