1

ワークボックスは私をバナナに駆り立てています。私のアプリが起動すると、ワークボックスの InjectManifest プラグインがキャッシュされたすべての URL の先頭に「auto」を追加しているように見えるため、事前にキャッシュされたすべてのルートが http404 を返します。なぜこれを行うのかを考えなければなりません。npm パッケージの再インストール、シークレット モードでの実行、すべてのキャッシュのクリアなどを試しました。

「webpack-dev-server --mode development --open」を使用してアプリケーションを実行すると、問題の一部である可能性がある次の警告が表示されます。

WARNING in InjectManifest has been called multiple times, perhaps due to running webpack in --watch mode. The precache manifest generated after the first call may be inaccurate! Please see https://github.com/GoogleChrome/workbox/issues/1790 for more information.

webpack 構成で watch:false を設定しているため、このエラーが発生する理由がわかりません。

すべてのパスの前に「auto」があり、http404 を返すことに注意してください。Chrome の [アプリケーション] タブですべてのキャッシュをクリアしたことに注意してください。シークレットタブでも同じことが起こります。

自動パス

新しいタブを開いて「自動」を削除すると、正常に機能します。

自動なしで正常に動作します

マニフェストが挿入された Service Worker ファイルは、「auto」が URL の一部であることを示しています。

ここに画像の説明を入力

誰もこれを見たことがありますか?Service Worker をゼロから作成し、workbox を捨てることを検討し始めていますが、適切に動作させることができれば明らかに workbox を使用したいと考えています。

コード:

次のように、workbox-webpack-plugin を使用して Service Worker にプリキャッシュ マニフェストを挿入します。

import {precacheAndRoute} from 'workbox-precaching';
import {registerRoute} from 'workbox-routing';
import {CacheFirst} from 'workbox-strategies';

// Use the imported Workbox libraries to implement caching,
// routing, and other logic:
precacheAndRoute(self.__WB_MANIFEST || []);

registerRoute(
    ({request}) => request.destination === 'image',
    new CacheFirst({cacheName: 'images'}),
);

私の webpack.config.js は次のようになります。

const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const {InjectManifest} = require('workbox-webpack-plugin');

module.exports = {
    watch: false,
    entry: path.resolve(__dirname, './src/index.js'),
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: '[name].[contenthash].js',
    },
    module: {
        rules: [{test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader'}, {
            test: /\.(png|svg|jpg|gif)$/,
            use: [
                'file-loader',
            ],
        }]
    },
    plugins: [
        new HtmlWebpackPlugin({
            title: 'Prototype webpack + react + workbox usage',
            template: './src/index.html',
            filename: './index.html',
            'meta': {
                'viewport': 'width=device-width, initial-scale=1.0',
                'charset': 'UTF-8'
            }
        }),
        new InjectManifest({
            swSrc: './service-worker.js',
            swDest: './workbox-sw-generated.js',
        })
    ]
};

私の index.html も非常に単純です。

<!DOCTYPE html>
<html lang="en">

<head>
    <title><%= htmlWebpackPlugin.options.title %></title>
    <script>
        if ('serviceWorker' in navigator) {
            window.addEventListener('load', () => {
              navigator.serviceWorker.register('/workbox-sw-generated.js')
            });
        }
    </script>
</head>

<body>
    <section id="index"></section>
</body>

</html>

そして、ここに私のpackage.jsonがあります:

{
    "name": "simple_webpack_boilerplate",
    "version": "1.0.0",
    "description": "A ready to use simple webpack boilerplate for react",
    "main": "src/index.js",
    "scripts": {
        "start": "webpack-dev-server --mode development --open",
        "build": "webpack --mode production"
    },
    "author": "Willem",
    "license": "ISC",
    "devDependencies": {
        "@babel/core": "7.11.4",
        "@babel/preset-env": "7.11.0",
        "@babel/preset-react": "7.10.4",
        "babel-loader": "8.1.0",
        "file-loader": "^6.1.1",
        "html-webpack-plugin": "4.4.1",
        "terser-webpack-plugin": "^4.1.0",
        "webpack": "^5.0.0",
        "webpack-cli": "^3.3.12",
        "webpack-dev-server": "3.11.0",
        "workbox-webpack-plugin": "^5.1.4"
    },
    "dependencies": {
        "lodash": "^4.17.20",
        "react": "16.13.1",
        "react-dom": "16.13.1",
        "react-router-dom": "^5.2.0"
    }
}
4

1 に答える 1