File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- import '!! style-loader!css-loader!sass-loader! ./app.scss ' ;
1
+ import 'style-loader!./app.<%= styleExt %> ' ;
2
2
3
3
import './polyfills' ;
4
4
Original file line number Diff line number Diff line change @@ -195,19 +195,19 @@ module.exports = function makeWebpackConfig(options) {
195
195
// LESS LOADER
196
196
// Reference: https://github.com/
197
197
test : / \.less$ / ,
198
- use : [ 'style-loader' , 'css -loader', 'less-loader' ] ,
198
+ use : [ 'raw -loader' , 'less-loader' ] ,
199
199
include : [
200
200
path . resolve ( __dirname , 'node_modules/bootstrap/less/*.less' ) ,
201
- path . resolve ( __dirname , 'client/app/app.less ' )
201
+ path . resolve ( __dirname , 'client' )
202
202
] < % } % >
203
203
< % _ if ( filters . stylus ) { _ % >
204
204
// Stylus LOADER
205
205
// Reference: https://github.com/
206
206
test : / \.styl$ / ,
207
- use : [ 'style-loader' , 'css -loader', 'stylus-loader' ] ,
207
+ use : [ 'raw -loader' , 'stylus-loader' ] ,
208
208
include : [
209
209
path . resolve ( __dirname , 'node_modules/bootstrap-styl/bootstrap/*.styl' ) ,
210
- path . resolve ( __dirname , 'client/app/app.styl ' )
210
+ path . resolve ( __dirname , 'client' )
211
211
] < % } % >
212
212
} < % } % > ]
213
213
} ;
You can’t perform that action at this time.
0 commit comments