From fbaf68087efb281a6c4e8251929da7d83fc6f78e Mon Sep 17 00:00:00 2001 From: Lightling Date: Fri, 18 Oct 2024 20:42:25 -0400 Subject: [PATCH] tweaks to get builds going - update favicon path (currently hardcoded for now) - comment out broken thumbnail in articles - add commands to root package.json --- package.json | 5 ++++- projects/frontend/index.html | 2 +- projects/frontend/src/views/article/article-tile.vue | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 6541a82..bf01ef6 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,10 @@ "version": "0.0.0", "type": "module", "scripts": { - "start": "npm start -w=projects/frontend" + "start": "npm start -w=frontend", + "build": "npm run build -w=frontend", + "preview": "npm run preview -w=frontend", + "cms": "npm run develop -w=cms" }, "workspaces": [ "projects/*", diff --git a/projects/frontend/index.html b/projects/frontend/index.html index bf031ae..c48b57b 100644 --- a/projects/frontend/index.html +++ b/projects/frontend/index.html @@ -2,7 +2,7 @@ - + diff --git a/projects/frontend/src/views/article/article-tile.vue b/projects/frontend/src/views/article/article-tile.vue index 9fd0e7c..62090bb 100644 --- a/projects/frontend/src/views/article/article-tile.vue +++ b/projects/frontend/src/views/article/article-tile.vue @@ -14,7 +14,7 @@ const props = defineProps<{ }>() const resolved = ref({} as ArticleEntry) -const thumbnail = computed(() => resolved.value.thumbnail) +//const thumbnail = computed(() => resolved.value.thumbnail) const description = computed(() => marked.parse(resolved.value.description || '')) const date = computed(() => !!resolved.value.date ? getFormattedDate(resolved.value.date) : null) const title = computed(() => marked.parse(resolved.value.title || props.id))