tweaks to get builds going

- update favicon path (currently hardcoded for now)
- comment out broken thumbnail in articles
- add commands to root package.json
This commit is contained in:
lightling 2024-10-18 20:42:25 -04:00
parent fafa40fe91
commit fbaf68087e
Signed by: lightling
GPG key ID: F1F29650D537C773
3 changed files with 6 additions and 3 deletions

View file

@ -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/*",

View file

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="/content/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title></title>
</head>

View file

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