This repository has been archived by the owner on Jun 18, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
152 lines (151 loc) · 4.5 KB
/
gatsby-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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
require('dotenv').config()
module.exports = {
siteMetadata: {
title: `nekohack.me | Yuma Kitamura - Web Developer`,
titleTemplate: `%s | nekohack.me | Yuma Kitamura - Web Developer`,
description: `A personal website that specializes in products and has a technical approach.`,
biography: `ネット上では 自由人、jiyuujin と名乗って生息しています。誕生日は1988年11月04日。大阪府豊中市生まれ。性別は男性。現在は関西圏(京都や大阪)を中心に活動しています。`,
position: `Web Developer,Front-End Engineer,HR Adviser,nekohack Org`,
workExperience: `自分のキャリアのスタートはiOSネイティブアプリのエンジニアとして。これまでのキャリアの中でiOSネイティブアプリエンジニアとして業務を通じ基礎的なコーディングを取得、Webを扱うサーバサイドで足りていないと言った環境も相まってjQueryを始めとしたCSS設計、フレームワークの使用など徐々にフロントエンドエンジニアという領域にも踏み込んでいきました。`,
author: `Yuma Kitamura`,
locale: `Osaka, Kyoto in Japan`,
lonlat: `35.003238° N, 135.750389° E`,
url: `https://yuma-kitamura.nekohack.me/`,
iconImage: `/images/bakeneko2.png`,
ogImage: `https://yuma-kitamura.nekohack.me/og/yuma-kitamura.jpg`,
twitterUsername: `@jiyuujinlab`,
twitterUrl: `https://twitter.com/jiyuujinlab`,
},
plugins: [
`gatsby-plugin-typescript`,
// `gatsby-plugin-preact`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-sass`,
options: {
implementation: require(`sass`),
},
},
{
resolve: `gatsby-plugin-react-intl`,
options: {
path: `${__dirname}/src/intl`,
languages: [`en`, `ja`],
defaultLanguage: `ja`,
redirect: true,
redirectComponent: require.resolve(`./src/components/Redirect/index.tsx`),
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-plugin-react-svg`,
options: {
rule: {
include: /\.svg$/,
},
},
},
`gatsby-plugin-image`,
`gatsby-transformer-yaml`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/src/contents`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-robots-txt`,
options: {
host: `https://yuma-kitamura.nekohack.me/`,
policy: [
{
userAgent: `*`,
allow: `/`,
},
],
},
},
{
resolve: `gatsby-plugin-google-adsense`,
options: {
publisherId: `ca-pub-7095980629133842`,
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: `UA-167986295-1`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Web Developer - Yuma Kitamura`,
short_name: `Portfolio`,
lang: `en`,
start_url: `/`,
icon: `src/static/icons/bakeneko2.png`,
icons: [
{
src: `icons/bakeneko2-72.png`,
sizes: `72x72`,
type: `image/png`,
},
{
src: `icons/bakeneko2-96.png`,
sizes: `96x96`,
type: `image/png`,
},
{
src: `icons/bakeneko2-128.png`,
sizes: `128x128`,
type: `image/png`,
},
{
src: `icons/bakeneko2-144.png`,
sizes: `144x144`,
type: `image/png`,
},
{
src: `icons/bakeneko2-152.png`,
sizes: `152x152`,
type: `image/png`,
},
{
src: `icons/bakeneko2-192.png`,
sizes: `192x192`,
type: `image/png`,
},
{
src: `icons/bakeneko2-384.png`,
sizes: `384x384`,
type: `image/png`,
},
{
src: `icons/bakeneko2-512.png`,
sizes: `512x512`,
type: `image/png`,
},
],
theme_color: `#ffbb33`,
background_color: `#ffbb33`,
display: `standalone`,
},
},
],
}