Hello,
A few of our users cannot access resources served from our FirebaseApp domain and get a ERR_CONNECTION_RESET error in their browsers.
They are all Windows users.
Our firebase.json file is really straightforward and looks like this:
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "folder",
"headers": [ {
"source" : "**/*.@(css|js|png|svg|gif|jpg|woff|ttf)",
"headers" : [ {
"key" : "Access-Control-Allow-Origin",
"value" : "*"
} ]
} ]
}
}
Any ideas or suggestions to fix this?