Skip to content

Commit

Permalink
Merge pull request #615 from m10/bugfix/sass-loader-include-paths
Browse files Browse the repository at this point in the history
remove scss from sass-loader inlcudePaths
  • Loading branch information
kwelch committed May 11, 2019
2 parents f14864b + c0de993 commit bc412c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions webpack.config.dev.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import webpack from 'webpack';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import path from 'path';
import HardSourceWebpackPlugin from 'hard-source-webpack-plugin';
import HardSourceWebpackPlugin from 'hard-source-webpack-plugin';

export default {
resolve: {
Expand Down Expand Up @@ -113,7 +113,7 @@ export default {
}, {
loader: 'sass-loader',
options: {
includePaths: [path.resolve(__dirname, 'src', 'scss')],
includePaths: [path.resolve(__dirname, 'src')],
sourceMap: true
}
}
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export default {
}, {
loader: 'sass-loader',
options: {
includePaths: [path.resolve(__dirname, 'src', 'scss')],
includePaths: [path.resolve(__dirname, 'src')],
sourceMap: true
}
}
Expand Down

0 comments on commit bc412c9

Please sign in to comment.