lbry.tech/content/.vuepress/config.js

26 lines
647 B
JavaScript
Raw Normal View History

2018-04-20 16:17:16 +03:00
// .vuepress/config.js
2018-06-27 17:00:24 -05:00
module.exports = exports = {
base: "/",
title: "LBRY.tech",
2018-05-11 10:59:31 +03:00
head: [
2018-06-27 17:00:24 -05:00
["meta", { name: "viewport", content: "initial-scale=1, viewport-fit=cover" }],
["link", { rel: "mask-icon", href: "/favicon.svg", color: "#222" }]
2018-05-11 10:59:31 +03:00
],
2018-04-20 16:17:16 +03:00
themeConfig: {
2018-06-27 17:00:24 -05:00
repo: "lbryio/lbry.tech",
docsBranch: "master/content",
editLinkText: "Edit this page on Github"
2018-06-06 10:44:28 +03:00
},
2018-06-27 17:00:24 -05:00
ga: "UA-60403362-1",
2018-06-15 09:37:39 +03:00
markdown: {
2018-06-27 17:00:24 -05:00
config: md => md.use(require("markdown-it-wikilinks")({
makeAllLinksAbsolute: true,
baseURL: "/glossary.html#",
uriSuffix: "",
htmlAttributes: {
class: "wikilink"
}
}))
2018-06-15 09:37:39 +03:00
}
2018-04-20 16:17:16 +03:00
}