如何在 Service Worker 中获取我的配置 json 文件

How do I fetch my config json file inside service worker

我的 tools/apache/htdocs/apps/config/firebase-config.json
中有一个 firebase 配置文件 我的 serviceworker tools/apache/htdocs/firebase-messaging-sw.js

中需要这个配置文件

es5有什么办法吗?

fetch("./config/firebaseConf.json").then(function (res) {
  return res.json();
}).then(function (data) {
 var firebase =  data;
})

上面的代码对我有用。