diff --git a/src/dev.config.ts b/src/dev.config.ts index ecf86e11..a64c3484 100644 --- a/src/dev.config.ts +++ b/src/dev.config.ts @@ -33,7 +33,8 @@ function webpackConfig(args: any): webpack.Configuration { inject: true, chunks: [entryName], meta: manifest ? { 'mobile-web-app-capable': 'yes' } : {}, - template: 'src/index.html' + template: 'src/index.html', + cache: false }), manifest && new WebpackPwaManifest({ diff --git a/src/dist.config.ts b/src/dist.config.ts index 457a56cf..f6f2809f 100644 --- a/src/dist.config.ts +++ b/src/dist.config.ts @@ -60,7 +60,8 @@ function webpackConfig(args: any): webpack.Configuration { inject: true, chunks: [entryName], meta: manifest ? { 'mobile-web-app-capable': 'yes' } : {}, - template: 'src/index.html' + template: 'src/index.html', + cache: false }), manifest && new WebpackPwaManifest({