mirror of
https://github.com/draussenfunker/draussenfunker.github.io.git
synced 2025-12-31 08:29:17 +00:00
66 lines
1.6 KiB
JavaScript
66 lines
1.6 KiB
JavaScript
const { defaultTheme } = require("@vuepress/theme-default");
|
|
const { socialSharePlugin } = require(`vuepress-plugin-social-share`);
|
|
const {
|
|
registerComponentsPlugin,
|
|
} = require("@vuepress/plugin-register-components");
|
|
const { path } = require("@vuepress/utils");
|
|
const { usePagesPlugin } = require("vuepress-plugin-use-pages");
|
|
|
|
module.exports = {
|
|
lang: "de-DE",
|
|
title: "Draussenfunker.de | QRV im Grünen",
|
|
description:
|
|
"Wir sind eine Gruppe von Funkamateuren, die sich mit dem Thema Funken im Freien beschäftigt.",
|
|
plugins: [
|
|
usePagesPlugin({ startsWith: "/aktivitaeten/" }),
|
|
socialSharePlugin(),
|
|
registerComponentsPlugin({
|
|
componentsDir: path.resolve(__dirname, "./components"),
|
|
}),
|
|
],
|
|
theme: defaultTheme({
|
|
sidebarDepth: 2,
|
|
contributors: false,
|
|
hostname: "https://draussenfunker.de",
|
|
|
|
notFound: ["Sorry, etwas ist schief gelaufen."],
|
|
backToHome: "Zurück zur Startseite",
|
|
lastUpdatedText: "Aktualisiert am",
|
|
navbar: [
|
|
// NavbarItem
|
|
{
|
|
text: "Start",
|
|
link: "/",
|
|
},
|
|
{
|
|
text: "Aktivitäten",
|
|
link: "/aktivitaeten",
|
|
},
|
|
{
|
|
text: "Amateurfunk",
|
|
link: "/amateurfunk",
|
|
},
|
|
{
|
|
text: "Mitmachen",
|
|
link: "/mitmachen",
|
|
},
|
|
{
|
|
text: "DIY",
|
|
children: [
|
|
"/diy/teleskop-viertelwellen-vertical",
|
|
"/diy/efhw",
|
|
"/diy/portabelrucksack",
|
|
"/diy/mic-splitter-ft-891",
|
|
],
|
|
},
|
|
{
|
|
text: "FAQ",
|
|
link: "/faq",
|
|
},
|
|
{
|
|
text: "Impressum",
|
|
link: "/impressum",
|
|
},
|
|
],
|
|
}),
|
|
};
|