diff --git a/content/.vuepress/config.js b/content/.vuepress/config.js index b6821e6..d38c064 100644 --- a/content/.vuepress/config.js +++ b/content/.vuepress/config.js @@ -1,28 +1,25 @@ // .vuepress/config.js -module.exports = { - base: '/', - title: 'LBRY.tech', +module.exports = exports = { + base: "/", + title: "LBRY.tech", head: [ - ['meta', {name: 'viewport', content: 'initial-scale=1, viewport-fit=cover'}], - ['link', {rel: 'mask-icon', href: '/favicon.svg', color: '#222'}] + ["meta", { name: "viewport", content: "initial-scale=1, viewport-fit=cover" }], + ["link", { rel: "mask-icon", href: "/favicon.svg", color: "#222" }] ], themeConfig: { - repo: 'lbryio/lbry.tech', - docsBranch: 'master/content', - editLinkText: 'Edit this page on Github' + repo: "lbryio/lbry.tech", + docsBranch: "master/content", + editLinkText: "Edit this page on Github" }, - ga: 'UA-60403362-1', + ga: "UA-60403362-1", markdown: { - config: md => { - var wikilinks = require('markdown-it-wikilinks')({ - makeAllLinksAbsolute: true, - baseURL: '/glossary.html#', - uriSuffix: '', - htmlAttributes: { - class: 'wikilink' - } - }); - md.use(wikilinks); - } + config: md => md.use(require("markdown-it-wikilinks")({ + makeAllLinksAbsolute: true, + baseURL: "/glossary.html#", + uriSuffix: "", + htmlAttributes: { + class: "wikilink" + } + })) } } diff --git a/content/.vuepress/event-bus.js b/content/.vuepress/event-bus.js index e2171d7..2cf9835 100644 --- a/content/.vuepress/event-bus.js +++ b/content/.vuepress/event-bus.js @@ -1,5 +1,4 @@ -import Vue from 'vue' +import Vue from "vue"; +const EventBus = new Vue(); -var EventBus = new Vue(); - -export default EventBus +export default EventBus;