From 5cb572f05d54f46e8511e59d52116ca85626c3f8 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Wed, 25 Dec 2019 12:27:36 -0500 Subject: [PATCH] [M] Rename config files to generalize them --- src/App.ts | 2 +- src/content/{charlie-config.json => config.json} | 4 ++-- .../{charlie-config.schema.json => config.schema.json} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename src/content/{charlie-config.json => config.json} (93%) rename src/content/{charlie-config.schema.json => config.schema.json} (100%) diff --git a/src/App.ts b/src/App.ts index 631e668..2247a2c 100644 --- a/src/App.ts +++ b/src/App.ts @@ -1,6 +1,6 @@ import {Component, Vue} from 'vue-property-decorator'; -import config from '@/content/charlie-config.json'; +import config from '@/content/config.json'; import Responsive from "@/responsive"; import PhotoSwipper from "@/PhotoSwipper.vue"; import pWaitFor from "p-wait-for"; diff --git a/src/content/charlie-config.json b/src/content/config.json similarity index 93% rename from src/content/charlie-config.json rename to src/content/config.json index 559c5b0..a6cee48 100644 --- a/src/content/charlie-config.json +++ b/src/content/config.json @@ -1,7 +1,7 @@ { "title": { - "text": "Charlie's Gallery", + "text": "Hykilpikonna's Gallery", "sub": "This is a subtitle", "height": 80, "background": "title.jpeg", @@ -19,7 +19,7 @@ { "default_title": "Untitled", "default_format": "jpg", - "author": "Charlie" + "author": "Hykilpikonna" }, "artworks": [ diff --git a/src/content/charlie-config.schema.json b/src/content/config.schema.json similarity index 100% rename from src/content/charlie-config.schema.json rename to src/content/config.schema.json