aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue
index a329775..e84f083 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -208,7 +208,7 @@ export default {
208 208
209 if (this.currentPage !== "default") { 209 if (this.currentPage !== "default") {
210 let pageConfig = await this.getConfig( 210 let pageConfig = await this.getConfig(
211 `assets/${this.currentPage}.yml` 211 `assets/${this.currentPage}.yml`,
212 ); 212 );
213 config = Object.assign(config, pageConfig); 213 config = Object.assign(config, pageConfig);
214 } 214 }
@@ -245,7 +245,7 @@ export default {
245 return response 245 return response
246 .text() 246 .text()
247 .then((body) => { 247 .then((body) => {
248 return parse(body, {merge: true}); 248 return parse(body, { merge: true });
249 }) 249 })
250 .then(function (config) { 250 .then(function (config) {
251 if (config.externalConfig) { 251 if (config.externalConfig) {