-
Notifications
You must be signed in to change notification settings - Fork 0
/
siteconfig.js
51 lines (50 loc) · 2.61 KB
/
siteconfig.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
require("dotenv").config();
module.exports = {
// Website title, shown in left sidebar and in page title
title: "orbiteleven",
// Site URL to generate absolute URLs. Used across the board.
url: process.env.URL || "http://localhost:8080",
// Profile image for left sidebar
image: "/assets/images/sidebar_profile.jpg",
// Image alt text for left sidebar
imageAlt: "Damon Vestervand",
// Author name, shown in left sidebar, and used in JSON-LD
author: "Damon Vestervand",
// Site description, shown below site image (optional)
description: "trying to find the perfect coffee to beer ratio in a day",
// OpenGraph default image, in case you don't have an `image`
// set in your Markdown frontmatter; relevant for social
// sharing.
openGraphDefaultImage: "/assets/images/opengraph.jpg",
// GitHub ID (optional, remove it not needed), used for link in the left sidebar
socialGitHub: "orbiteleven",
// LinkedIn ID (optional, remove it not needed), used for link in the left sidebar
socialLinkedIn: "damontr",
// Twitter ID (optional, remove it not needed), used for link in the left sidebar, and for OpenGraph sharing information
socialTwitter: "orbiteleven",
// YouTube ID/Channel (optional, remove it not needed), used for link in the left sidebar
socialYouTube: "UCVrtTWfIZdrcG6yDB5DBGuQ",
// Google Analytics ID (optional, remove it not needed), used for... well, Google Analytics
googleAnalytics: "G-N8SF2QW0ZE",
// Algolia-powered search (optional, remove it not needed),
// See: https://github.com/algolia/algoliasearch-netlify
algoliaSearch: {
// When enabled shows the search bar in the UI
enabled: false,
// You'll have to set this manually in your build settings.
// The value comes from Algolia, and is either visible in the
// UI for the Crawler Plugin or the Algolia Dashboard.
appId: process.env.ALGOLIA_APP_ID,
// You'll have to set this manually in your build settings.
// The value comes from Algolia, and is either visible in the
// UI for the Crawler Plugin or the Algolia Dashboard.
searchApiKey: process.env.ALGOLIA_SEARCH_API_KEY,
// You'll have to set this manually in your build settings.
// The value comes from Algolia, and is either visible in the
// UI for the Crawler Plugin or the Algolia Dashboard.
siteId: process.env.ALGOLIA_SITE_ID,
// Assuming that you deploy your "main" branch. Otherwise you
// can either override or configure this (using process.env.HEAD)
branch: "main"
}
};