Skip to content

Commit

Permalink
fix(@angular/cli): look for existing manifest in src/ as well
Browse files Browse the repository at this point in the history
  • Loading branch information
alxhub authored and hansl committed Mar 2, 2017
1 parent d52d290 commit 7f03b5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@angular/cli/models/webpack-configs/production.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const getProdConfig = function (wco: WebpackConfigOptions) {
}

extraPlugins.push(new GlobCopyWebpackPlugin({
patterns: ['ngsw-manifest.json'],
patterns: ['ngsw-manifest.json', 'src/ngsw-manifest.json'],
globOptions: {
optional: true,
},
Expand Down

0 comments on commit 7f03b5a

Please sign in to comment.