@@ -203,7 +203,7 @@ module.exports = function makeWebpackConfig(options) {
203
203
test : / \.( scss | sass ) $ / ,
204
204
loaders : [ 'style' , 'css' , 'sass' ] ,
205
205
include : [
206
- path . resolve ( __dirname , 'node_modules/bootstrap-sass/assets/stylesheets/.scss' ) ,
206
+ path . resolve ( __dirname , 'node_modules/bootstrap-sass/assets/stylesheets/* .scss' ) ,
207
207
path . resolve ( __dirname , 'client/app/app.scss' )
208
208
] < % } %>
209
209
< % _ if ( filters . less ) { _ % >
@@ -212,7 +212,7 @@ module.exports = function makeWebpackConfig(options) {
212
212
test: /\.less$/,
213
213
loaders: ['style', 'css', 'less'],
214
214
include: [
215
- path.resolve(__dirname, 'node_modules/'),//TODO: bootstrap
215
+ path.resolve(__dirname, 'node_modules/bootstrap/less/*.less '),
216
216
path.resolve(__dirname, 'client/app/app.less')
217
217
]< % } % >
218
218
< % _ if ( filters . stylus ) { _ % >
@@ -221,7 +221,7 @@ module.exports = function makeWebpackConfig(options) {
221
221
test: /\.styl$/,
222
222
loaders: ['style', 'css', 'stylus'],
223
223
include: [
224
- path.resolve(__dirname, 'node_modules/'),//TODO: bootstrap
224
+ path.resolve(__dirname, 'node_modules/bootstrap-styl/bootstrap/*.styl '),
225
225
path.resolve(__dirname, 'client/app/app.styl')
226
226
]< % } % >
227
227
} < % } % > ]
0 commit comments