FirebaseをJavaScriptで使う際に
ブラウザにこんなエラーが・・・。
The script has an unsupported MIME type ('text/html').
対応
firebaseが裏で使っているpushMessage関連のservice-workerでエラーが出ている。
使う予定がないので、messagingSenderId
をコメントアウトする。
const firebaseConfig = {
apiKey: "AIzaSyALUjGi0XpbtZ0Rm4-n5VdzUc6p3tbSReM",
authDomain: "webutil-b4b49.firebaseapp.com",
projectId: "webutil-b4b49",
// storageBucket: "webutil-b4b49.appspot.com",
// messagingSenderId: "480231815675",
appId: "1:480231815675:web:e66bfc91276e3eeb2d735e",
measurementId: "G-55DN3ZP802"
};
これで改善。
messagingまわり使いたい場合は再考。