What does double underscore slash mean? / __ /

On github, I see this file path:

importScripts('/__/firebase/3.8.0/firebase-app.js');
importScripts('/__/firebase/3.8.0/firebase-messaging.js');
importScripts('/__/firebase/init.js');

      

What does "/ __ /" mean?

+3


source to share


2 answers


In the Firebase Hosting SDK, Firebase, along with the script that initializes the SDK for the current project, is automatically served with special reserved URLs. You can read about it in this blog post .



+3


source


This means that all libraries are inside the root folder.



0


source







All Articles