You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
220 B

  1. const path = require('path');
  2. module.exports = {
  3. module: {
  4. loaders: [
  5. {
  6. test: /.scss$/,
  7. loaders: ["style", "css", "sass"],
  8. include: path.resolve(__dirname, '../')
  9. }
  10. ]
  11. }
  12. }