13 lines
216 B
JavaScript
Raw Permalink Normal View History

const path = require('path');
module.exports = {
module: {
loaders: [
{
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
loaders: ['file-loader'],
include: path.resolve(__dirname, '../'),
},
],
},
};