mirror of
https://github.com/barkeser2002/status.git
synced 2026-09-25 01:50:11 +03:00
11 lines
186 B
JavaScript
11 lines
186 B
JavaScript
module.exports = {
|
|
webpack: (config, options) => {
|
|
config.module.rules.push({
|
|
test: /\.ya?ml$/,
|
|
type: 'json',
|
|
use: 'yaml-loader',
|
|
})
|
|
|
|
return config
|
|
},
|
|
} |