We have a public directory in Firebase project, in which we have js, css, and img directory.
The public/js and public/css directory contains file.js and file.min.js as well.
What I want --
How do we restrict user to allow access to public/js/*.min.js and public/css/*.min.css ONLY.
That is minified files only.
What I don't want --
The user could not access .js and .css files directly, even if the address is known like https://***AnyFirebaseDomain.com/js/file.js
The one can not access above URL, even not any .js and .css hosted over serve.
That is restrict non-minified files to access from browser.