mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-04 15:50:14 +00:00
13 lines
216 B
JavaScript
13 lines
216 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
module: {
|
|
loaders: [
|
|
{
|
|
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
|
|
loaders: ['file-loader'],
|
|
include: path.resolve(__dirname, '../'),
|
|
},
|
|
],
|
|
},
|
|
}; |