Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. build.configureWebpack.mergeConfig({
  2. additionalConfiguration: (generatedConfiguration) => {
  3. generatedConfiguration.module.loaders.push(
  4. [{
  5. test: /.scss$/,
  6. loaders: [ 'style', 'css?sourceMap', 'sass?sourceMap' ]
  7. }]
  8. );
  9. return generatedConfiguration;
  10. }
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement