-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
37 lines (33 loc) · 2.01 KB
/
config.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
module.exports = {
/** Site MetaData (Required all)*/
title: `DevJin-Blog`, // (* Required)
description: `DevJin-Blog`, // (* Required)
author: `Dojin Kim`, // (* Required)
siteUrl: 'https://devjin-blog.com', // (* Required)
/** Header */
profileImageFileName: 'profile.png', // include filename extension ex.'profile.jpg'
// The Profile image file is located at path "./images/"
// If the file does not exist, it is replaced by a random image.
ogImageFileName: 'think.png',
/** Home > Bio information*/
comment: 'Software Engineer @daangn',
name: 'Dojin Kim',
company: '@daangn',
location: 'Korea',
email: '[email protected]',
resume: 'https://www.notion.so/henrystudy/Henry-Kim-s-Resume-af138c53c97c4e4c91c5177d01e03e7b',
linkedin: 'https://www.linkedin.com/in/dojin-henry-kim-64080a158/',
facebook: 'https://www.facebook.com/dojin1',
instagram: '', // ex.'https://www.instagram.com/junhobaik'
github: 'https://github.com/dojinkimm',
/** Post */
enablePostOfContents: true, // TableOfContents activation (Type of Value: Boolean. Not String)
disqusShortname: 'devjin-blog', // comments (Disqus sort-name)
enableSocialShare: true, // Social share icon activation (Type of Value: Boolean. Not String)
/** Optional */
googleAnalytics: 'UA-162755603-01', // Google Analytics TrackingID. ex.'UA-123456789-0'
googleSearchConsole: 'ft9pnJCeCah-6sBsoibv4lmOIF4u1FzVSagbNceaQ-g', // content value in HTML tag of google search console ownership verification
googleAdsenseSlot: '1007605629', // Google Adsense Slot. ex.'5214956675'
googleAdsenseClient: 'ca-pub-1867053081376792', // Google Adsense Client. ex.'ca-pub-5001380215831339'
// Please correct the adsense client number(ex.5001380215831339) in the './static/ads.txt' file.
};