1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 08:18:28 -04:00
jarv.is/config.toml

118 lines
2.8 KiB
TOML

baseURL = "https://jarv.is/"
languageCode = "en-us"
title = "Jake Jarvis"
# increase timeout for image processing
timeout = 120000
canonifyURLs = true
disableFastRender = true
disableHugoGeneratorInject = true # don't worry, inserted manually :)
disableKinds = ["taxonomy", "taxonomyTerm"]
pygmentsUseClasses = true
pygmentsCodeFences = true
enableRobotsTXT = true
# prefer Netlify's _redirects file, see outputs below
disableAliases = true
[author]
name = "Jake Jarvis"
jobTitle = "Front-End Web Developer"
email = "jake@jarv.is"
twitter = "jakejarvis"
github = "jakejarvis"
facebook = "jakejarvis"
facebook_id = "1329090853"
instagram = "jakejarvis"
linkedin = "jakejarvis"
mastodon = "mastodon.social/@jakejarvis"
[params]
description = "Hello! I'm a frontend web developer based in Boston, Massachusetts specializing in modern JavaScript frameworks and progressive web apps."
domain = "jarv.is"
facebook_app_id = "3357248167622283"
gitRepo = "https://github.com/jakejarvis/jarv.is"
wayback = "https://web.archive.org/web/20010501000000*/jakejarvis.com"
copyrightFirstYear = "2001"
[outputs]
home = ["HTML", "RSS", "MANIFEST", "REDIRECTS", "HEADERS"]
section = ["HTML"]
page = ["HTML", "AMP"]
[mediaTypes]
[mediaTypes."text/netlify"]
delimiter = ""
[outputFormats]
[outputFormats.AMP]
mediaType = "text/html"
basename = "amp"
path = "."
permalinkable = true
isHTML = true
[outputFormats.MANIFEST]
mediaType = "application/json"
baseName = "manifest"
notAlternative = true
[outputFormats.REDIRECTS]
mediatype = "text/netlify"
baseName = "_redirects"
isPlainText = true
notAlternative = true
[outputFormats.HEADERS]
mediatype = "text/netlify"
baseName = "_headers"
isPlainText = true
notAlternative = true
[sitemap]
filename = "sitemap.xml"
[imaging]
# options for resampling filters:
# https://github.com/disintegration/imaging#image-resizing
resampleFilter = "Linear"
quality = 75
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark]
[markup.goldmark.extensions]
linkify = true
strikethrough = true
typographer = false
[markup.goldmark.parser]
autoHeadingID = false
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
codeFences = true
lineNos = false
noClasses = true
tabWidth = 4
[privacy]
[privacy.twitter]
enableDNT = true
[privacy.youtube]
privacyEnhanced = true
# TODO: find better way than double-mounting content as weird hack to allow
# access to image resources from templates.
# https://gohugo.io/hugo-modules/configuration/#module-config-mounts
[module]
[[module.mounts]]
source = "content"
target = "assets/content"
[[module.mounts]]
source = "assets"
target = "assets"
[[module.mounts]]
source = "content"
target = "content"