我的项目在本地工作正常,当我将其部署到Firebase Hosting时。也适用于Edge,但在部署时无法在Chrome中运行。我收到如下所示的错误。我认为" auth"过程从未结束,但我不知道原因:(
代码非常简单:
signIn: function () {
var that = this;
this.$.auth.signInWithPopup()
.then(function (res) {
that.fire('feedback-positivo', 'Has iniciado sesión');
that.saveProfile(res.user, res.credential);
})
.catch(function (error) {
console.log('Error', error.message, error.code);
});
},