PWAのホーム画面に追加で「Site cannot be installed: the page does not work offline」
Chromeのデベロッパーツールで Add to homescreen
をクリックしても「Site cannot be installed: the page does not work offline
」とエラーが出てしまった。
「ホーム画面に追加」機能には関係ないかなと、Service worker
のjsファイルを空にしていたのが駄目で、以下のコードだけは必要だった。
self.addEventListener('fetch', function(event) {
});