Skip to content

Commit

Permalink
Emit the html even if it was not changed (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
agubler committed Jan 16, 2019
1 parent add134e commit 6076313
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/dev.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down
3 changes: 2 additions & 1 deletion src/dist.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down

0 comments on commit 6076313

Please sign in to comment.