Update Recipe Cookbook Submission Flow (#3064)

Co-authored-by: angiejones <jones.angie@gmail.com>
This commit is contained in:
Ebony Louis
2025-06-27 19:31:20 -04:00
committed by GitHub
parent a3ef55080b
commit 9380bd19e4
16 changed files with 1018 additions and 318 deletions

View File

@@ -0,0 +1,18 @@
module.exports = function () {
return {
name: 'custom-yaml-loader',
configureWebpack() {
return {
module: {
rules: [
{
test: /\.ya?ml$/,
use: 'yaml-loader',
},
],
},
};
},
};
};