Skip to content
Snippets Groups Projects
webpack.config.js 220 B
Newer Older
  • Learn to ignore specific revisions
  • const path = require('path');
    
    module.exports = {
      module: {
        loaders: [
          {
            test: /.scss$/,
            loaders: ["style", "css", "sass"],
            include: path.resolve(__dirname, '../')
          }
        ]
      }
    }