-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.ts
68 lines (65 loc) · 1.78 KB
/
gatsby-config.ts
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
import type { GatsbyConfig } from "gatsby";
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`,
});
const config: GatsbyConfig = {
siteMetadata: {
title: `portfolio`,
siteUrl: `https://2ndr9.github.io/`,
},
plugins: [
// Sharp(画像圧縮ライブラリ)を使えるようにする.低レイヤーのプラグイン
"gatsby-plugin-sharp",
// 画像読み込みでImageSharpノードを生成する
`gatsby-transformer-sharp`,
{
resolve: `gatsby-plugin-google-gtag`,
options: {
trackingIds: [process.env.GATSBY_TRACKING_ID],
pluginConfig: {
head: true,
},
},
},
{
// gatsby-transformer-remarkというものもあるが,これはmdxには非対応.
// また,画像の読み込みができなかった
resolve: `gatsby-plugin-mdx`,
options: {
gatsbyRemarkPlugins: [
{
// Processes images in markdown so they can be used in the production build.
resolve: `gatsby-remark-images`,
options: {
maxWidth: 200,
},
},
],
plugins: [{ resolve: "gatsby-remark-images" }],
},
},
// tailwind用
"gatsby-plugin-postcss",
// grapqhのtype生成
`gatsby-plugin-typegen`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `contents`,
path: `${__dirname}/contents/`,
},
},
// gatsyby-imageが非推奨になり,こちらが推奨
// <GatsbyImage>などが使える
`gatsby-plugin-image`,
`gatsby-remark-images`,
`gatsby-plugin-react-helmet`,
{
resolve: "gatsby-plugin-manifest",
options: {
icon: "src/images/favicon.png",
},
},
],
};
export default config;