mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-03 07:09:21 +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, '../'),
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
};
|