Skip to content

Commit

Permalink
fix(webpack.cssnext): change include path
Browse files Browse the repository at this point in the history
  • Loading branch information
kiki-le-singe committed Jan 18, 2017
1 parent b883ce2 commit 06173ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webpack/dev.config.cssnext.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const config = {
},
{
test: /common\/styles\/global\/app\.css$/,
include: [globalStylesDir],
include: [srcDir],
loaders: [
'style-loader',
{
Expand Down
2 changes: 1 addition & 1 deletion webpack/prod.config.cssnext.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const config = {
},
{
test: /common\/styles\/global\/app\.css$/,
include: [globalStylesDir],
include: [srcDir],
loader: ExtractTextPlugin.extract({
fallbackLoader: 'style-loader',
loader: `css-loader?${cssLoaderOptions()}!postcss-loader`
Expand Down

0 comments on commit 06173ea

Please sign in to comment.