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