Deploy to Firebase and modify rule files to avoid conflict

This commit is contained in:
Ray 2023-12-04 13:26:49 +00:00 committed by GitHub
parent 0fafbbaa8a
commit cbb3157fad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 15 deletions

View File

@ -1,13 +1,13 @@
apple-touch-icon.png,1701693203880,636540c762d4809990b0a3f99b00b6a5523e8c44054b3e6536bc8bd01d618a17 apple-touch-icon.png,1701696208109,636540c762d4809990b0a3f99b00b6a5523e8c44054b3e6536bc8bd01d618a17
asset-manifest.json,1701693220536,1daf7a38d667eec16081eb2c66c8fcfd0c171941820744eb9658de75b0ace36f asset-manifest.json,1701696229845,e16d970dd02e6a8989d2b75940602983a33fc569f65694381e974e67a470e27b
index.html,1701693220536,4b5ae028a55c0fa7ef7b959ffb40a664063f6b682adb18bda1190021c531cef6 index.html,1701696229845,e40f8df13c45d72a007a2e24768c4f7986541e38cacce1af86897422d92a6a82
logo192.png,1701693203880,c621f7ba0965ce7fc3f1a429c12a4a1d9cae19877ce3b8cebee93845deab0617 logo192.png,1701696208109,c621f7ba0965ce7fc3f1a429c12a4a1d9cae19877ce3b8cebee93845deab0617
manifest.json,1701693203880,0958a5e0c831126100c8c2d06a6bbaa665a3900f21aaff4130238a6f5a113aa1 manifest.json,1701696208113,0958a5e0c831126100c8c2d06a6bbaa665a3900f21aaff4130238a6f5a113aa1
robots.txt,1701693203880,2544ca049f223a42bff01f72ad930a5edba75bbb7199d0f8430a02ff5aca16ec robots.txt,1701696208117,2544ca049f223a42bff01f72ad930a5edba75bbb7199d0f8430a02ff5aca16ec
static/js/787.fe1675bb.chunk.js,1701693220556,09044c094544c6017476721265373bd92ca82ed8434b6f9c010fe07087e14d49 static/js/787.fe1675bb.chunk.js,1701696229865,09044c094544c6017476721265373bd92ca82ed8434b6f9c010fe07087e14d49
static/js/787.fe1675bb.chunk.js.map,1701693220556,683229073c7ef9ee1a721578162763c4560a3420f836b325c01601e50f646529 static/js/787.fe1675bb.chunk.js.map,1701696229873,683229073c7ef9ee1a721578162763c4560a3420f836b325c01601e50f646529
static/js/main.3fdc0d0b.js.LICENSE.txt,1701693220556,025207c5e9934797fea1918a1560a8d2747ae5dd12179436ec22ee8c84341806 static/js/main.b443da58.js.LICENSE.txt,1701696229865,025207c5e9934797fea1918a1560a8d2747ae5dd12179436ec22ee8c84341806
static/css/main.6ccd65a8.css,1701693220556,265f9979f4391283252fdae35b22ffd098a887c8d5f299ccf72fa2f4335c8303 static/css/main.6ccd65a8.css,1701696229865,265f9979f4391283252fdae35b22ffd098a887c8d5f299ccf72fa2f4335c8303
static/js/main.3fdc0d0b.js,1701693220556,7438bb32f34e03eb7cad5c436df3b157408799be504d434f60ab902f4a84e5b0 static/css/main.6ccd65a8.css.map,1701696229865,6d6f3434075d5f325c92f6ab942391103fcbf237317eb7d825dd42e97c416961
static/css/main.6ccd65a8.css.map,1701693220556,6d6f3434075d5f325c92f6ab942391103fcbf237317eb7d825dd42e97c416961 static/js/main.b443da58.js,1701696229865,992baa5c8e3d292ec4883b24e717982010b49b234f4265a7358feb237e266d83
static/js/main.3fdc0d0b.js.map,1701693220556,04f8f48d2d859e022302029293e667c159524f80b6e80ae3219e514e7f97f6a4 static/js/main.b443da58.js.map,1701696229869,ce1ff4621b2d5e501f1c9310817e173df46388eaf50be781b542250c1a8fa532

View File

@ -3,7 +3,7 @@ rules_version = '2';
service cloud.firestore { service cloud.firestore {
match /databases/{database}/documents { match /databases/{database}/documents {
match /{document=**} { match /{document=**} {
allow read, write: if false; allow read: if true;
} }
} }
} }

View File

@ -6,7 +6,7 @@ rules_version = '2';
service firebase.storage { service firebase.storage {
match /b/{bucket}/o { match /b/{bucket}/o {
match /{allPaths=**} { match /{allPaths=**} {
allow read, write: if false; allow read: if true;
} }
} }
} }