mirror of
https://github.com/aljazceru/goose.git
synced 2025-12-17 14:14:26 +01:00
18 lines
328 B
JavaScript
18 lines
328 B
JavaScript
module.exports = function () {
|
|
return {
|
|
name: 'custom-yaml-loader',
|
|
configureWebpack() {
|
|
return {
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.ya?ml$/,
|
|
use: 'yaml-loader',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
},
|
|
};
|
|
};
|
|
|