mirror of
https://github.com/alrayyes/wiki.git
synced 2025-05-14 04:27:39 +00:00
base path refactor to better support subpath hosting
This commit is contained in:
parent
3201f83b70
commit
c874e7e937
29 changed files with 257 additions and 389 deletions
quartz/components
|
@ -1,14 +1,13 @@
|
|||
import { canonicalizeServer, pathToRoot } from "../util/path"
|
||||
import { pathToRoot } from "../util/path"
|
||||
import { JSResourceToScriptElement } from "../util/resources"
|
||||
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
||||
|
||||
export default (() => {
|
||||
function Head({ cfg, fileData, externalResources }: QuartzComponentProps) {
|
||||
const slug = canonicalizeServer(fileData.slug!)
|
||||
const title = fileData.frontmatter?.title ?? "Untitled"
|
||||
const description = fileData.description?.trim() ?? "No description provided"
|
||||
const { css, js } = externalResources
|
||||
const baseDir = pathToRoot(slug)
|
||||
const baseDir = pathToRoot(fileData.slug!)
|
||||
const iconPath = baseDir + "/static/icon.png"
|
||||
const ogImagePath = `https://${cfg.baseUrl}/static/og-image.png`
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue