I have a firebase configuration file inside my tools/apache/htdocs/apps/config/firebase-config.json
I need this config file in my serviceworker tools/apache/htdocs/firebase-messaging-sw.js
Is there any way in es5?
Advertisement
Answer
JavaScript
x
6
1
fetch("./config/firebaseConf.json").then(function (res) {
2
return res.json();
3
}).then(function (data) {
4
var firebase = data;
5
})
6
The above code worked for me.