-
Notifications
You must be signed in to change notification settings - Fork 4
/
gatsby-config.js
30 lines (29 loc) · 1.01 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
require(`dotenv`).config({ path: `.env` });
module.exports = {
pathPrefix: "/design/research",
siteMetadata: {
title: "IBM Design Research",
description:
"IBM Design Research helps teams uncover insights and inform the experiences we create for people. It is at the heart of Enterprise Design thinking.",
keywords:
"IBM, design, research, design research, design thinking, human-centered design, interviewing, user research, interviews, user experience research, service design, ux research, design strategy, people, practice, observation, user interviews, anthropology",
},
plugins: [
{
resolve: "gatsby-theme-carbon",
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `IBM Design Research`,
short_name: `IBM Design Research`,
start_url: `/`,
background_color: `#171717`,
theme_color: `#000000`,
display: `minimal-ui`,
include_favicon: false,
icon: `src/images/favicon.svg`,
},
},
],
};