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))