mirror of
https://github.com/tormachris/cf-workers-status-page.git
synced 2024-11-01 05:46:09 +01:00
12 lines
187 B
JavaScript
12 lines
187 B
JavaScript
module.exports = {
|
|
webpack: (config, options) => {
|
|
config.module.rules.push({
|
|
test: /\.ya?ml$/,
|
|
type: 'json',
|
|
use: 'yaml-loader',
|
|
})
|
|
|
|
return config
|
|
},
|
|
}
|