Is there a way to store pdf files in firebase?

I am trying to store a base-64 encoded pdf file into firestore, but the base-64 text is too long to store to the database is there a way to compress the text before storing?

I tried the main program at first this is what I got:

Uncaught (in promise) FirebaseError: Document 'projects/jeel-al-ebdaa/databases/(default)/documents/Teachers/testteacher' cannot be written because its size (1,377,477 bytes) exceeds the maximum allowed size of 1,048,576 bytes.

I know this means the text is too long.
I can not find a way to compress the text in pure vanilla js