Files
Adam Janiš 3898ffcbc7 d1 init
2022-07-11 09:48:07 +01:00

12 lines
191 B
JavaScript

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