Files
status/flareact.config.js
2024-04-24 14:00:19 +00:00

11 lines
186 B
JavaScript

module.exports = {
webpack: (config, options) => {
config.module.rules.push({
test: /\.ya?ml$/,
type: 'json',
use: 'yaml-loader',
})
return config
},
}