From f160caecfaafb53404a06dd528cd21df65e49b82 Mon Sep 17 00:00:00 2001 From: JenswBE <6514515+JenswBE@users.noreply.github.com> Date: Sun, 15 Oct 2023 12:04:42 +0200 Subject: Fix YAML anchors Fixes https://github.com/bastienwirtz/homer/issues/559 Based on https://eemeli.org/yaml/#schema-options --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 25e943f..16e814b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -245,7 +245,7 @@ export default { return response .text() .then((body) => { - return parse(body); + return parse(body, {merge: true}); }) .then(function (config) { if (config.externalConfig) { -- cgit v1.2.3