UNPKG

316 BJavaScriptView Raw
1const path = require('path');
2
3module.exports = {
4 module: {
5 loaders: [
6 {
7 test: /\.css?$/,
8 loader: 'style-loader!css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]!postcss-loader',
9 include: path.resolve(__dirname, '../', 'src')
10 }
11 ]
12 }
13}