Files
tkmind_go/documentation/plugins/custom-webpack.cjs
T
2025-12-23 22:56:12 -06:00

18 lines
366 B
JavaScript

module.exports = function () {
return {
name: 'custom-webpack-loaders',
configureWebpack(config) {
config.module.rules.push({
test: /\.ya?ml$/,
use: 'yaml-loader',
});
config.module.rules.push({
test: /\.raw$/,
type: 'asset/source',
});
return {};
},
};
};