Reconfigure Firebase to correct project

This commit is contained in:
Ray 2023-12-27 13:10:07 +00:00 committed by GitHub
parent 81dfd4d1ba
commit 105fd3f337
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 0 additions and 62 deletions

View File

@ -1,14 +0,0 @@
asset-manifest.json,1703682169164,2bc390cfbbcc9d0cde7cd90e6453c4dcb50b82a65eb4b182919f5fdcad85b3b2
favicon.ico,1703682156724,a23c21f0703c05d16598902d8aab80a7426c3dea9ebfa16aa644d8c0885e09e6
index.html,1703682169164,22a30b80fc2e0b4d62415cf49aaff9d8bcf5d8575e9de18178b5b84fb9109a09
logo192.png,1703682156724,e91e90d545f804b78465e336656a8db9f113cafed6235166c5b98d2830fdbcae
manifest.json,1703682156724,c12dd51ed2c8ac94acf3c25d1f0c541d667c90c8557ac43cb42d0a6df086bd7f
robots.txt,1703682156724,93c0b9bd95d88537a1eb1706bcef9954bdb305674f33c5aeb7549eba0d5af7c9
static/js/787.a6d1ab23.chunk.js,1703682169180,33afc04de61c04377ef966764aaf21b1bba6bbfc1300d67bef6ecc8d85355277
static/js/787.a6d1ab23.chunk.js.map,1703682169180,788da43aa9c45554445315f92cd26ae1936200ab5f1f9000bb14b9153505aa1a
static/js/main.b7829736.js.LICENSE.txt,1703682169176,64f315b68253621057cfb73e72a5e63921d483c76ab0b67042ffe0c1294b2cd1
logo512.png,1703682156724,2aa15ed50ba63de1e355435eda19601934f6d7f3c2acbebc71cec862ed72e793
static/css/main.62d3213f.css,1703682169176,af23472e44deb35bdfeb0b7390ce8efd2acc86442b9d839559906304abfd475b
static/js/main.b7829736.js,1703682169176,a0924f13ed15b235b4904c5376c662494e1c6b3077e4015f200d464a9c536c33
static/css/main.62d3213f.css.map,1703682169180,6e4c33d98b511b92556a7c828f4711cc1456bbcd65f87796e58b2b47a51a30d2
static/js/main.b7829736.js.map,1703682169180,e11e62b88e3e48443cdf840580aceef0567f623b2ad4c916c023037ebfaf0298

View File

@ -1,5 +0,0 @@
{
"projects": {
"default": "ray-ray-s-word-bingo"
}
}

View File

@ -1,20 +0,0 @@
{
"firestore": {
"rules": "firestore.rules",
"indexes": "firestore.indexes.json"
},
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}

View File

@ -1,4 +0,0 @@
{
"indexes": [],
"fieldOverrides": []
}

View File

@ -1,19 +0,0 @@
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// This rule allows anyone with your Firestore database reference to view, edit,
// and delete all data in your Firestore database. It is useful for getting
// started, but it is configured to expire after 30 days because it
// leaves your app open to attackers. At that time, all client
// requests to your Firestore database will be denied.
//
// Make sure to write security rules for your app before that time, or else
// all client requests to your Firestore database will be denied until you Update
// your rules
match /{document=**} {
allow read, write: if request.time < timestamp.date(2024, 1, 26);
}
}
}