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:
parent
fafa40fe91
commit
fbaf68087e
3 changed files with 6 additions and 3 deletions
|
@ -4,7 +4,10 @@
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"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": [
|
"workspaces": [
|
||||||
"projects/*",
|
"projects/*",
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<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" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title></title>
|
<title></title>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -14,7 +14,7 @@ const props = defineProps<{
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
const resolved = ref({} as ArticleEntry)
|
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 description = computed(() => marked.parse(resolved.value.description || ''))
|
||||||
const date = computed(() => !!resolved.value.date ? getFormattedDate(resolved.value.date) : null)
|
const date = computed(() => !!resolved.value.date ? getFormattedDate(resolved.value.date) : null)
|
||||||
const title = computed(() => marked.parse(resolved.value.title || props.id))
|
const title = computed(() => marked.parse(resolved.value.title || props.id))
|
||||||
|
|
Loading…
Add table
Reference in a new issue