Skip to content

Commit

Permalink
fix(config): change css regex which causes error
Browse files Browse the repository at this point in the history
  • Loading branch information
sarunint committed Sep 12, 2016
1 parent 1572270 commit 6eef831
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 6eef831

Please sign in to comment.