Skip to content

Commit

Permalink
fix(@angular/cli): don't drop resource extentions
Browse files Browse the repository at this point in the history
Fix #8099
  • Loading branch information
filipesilva authored and hansl committed Oct 19, 2017
1 parent 99daee7 commit 424e617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@angular/cli/models/webpack-configs/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export function getCommonConfig(wco: WebpackConfigOptions) {
test: /\.(jpg|png|webp|gif|otf|ttf|woff|woff2|ani)$/,
loader: 'url-loader',
options: {
name: `[name]${hashFormat.file}`,
name: `[name]${hashFormat.file}.[ext]`,
limit: 10000
}
}
Expand Down

0 comments on commit 424e617

Please sign in to comment.