Skip to content

Commit

Permalink
fix(config): change css regex which causes error (#2069)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarunint authored and hansl committed Sep 14, 2016
1 parent 7e1bdd7 commit 7096cc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular-cli/models/webpack-build-common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function getWebpackCommonConfig(
// in main, load css as raw text
       {
exclude: styles,
test: /\.css/,
test: /\.css$/,
loaders: ['raw-loader', 'postcss-loader']
}, {
exclude: styles,
Expand Down

0 comments on commit 7096cc9

Please sign in to comment.