-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgatsby-config.js
29 lines (28 loc) · 990 Bytes
/
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
const { PATH_PREFIX = '/' } = process.env;
module.exports = {
pathPrefix: PATH_PREFIX,
siteMetadata: {
title: 'IBM Design for AI',
description: 'Our practice is built on our Principles for the AI Era as a resource for all designers and developers. This shared collection of ethics, guidelines, and resources ensures that IBM products share a unified foundation.',
keywords: 'artificial intelligence,machine learning,ai,ml,ethics,data,ibm,carbon,deep learning,conversation ui,design,develop,cool,technology',
},
proxy: {
prefix: "/api/0.1",
url: "http://localhost:6003",
},
plugins: [
{ resolve: 'gatsby-theme-carbon', options: {} },
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `IBM Design for AI`,
short_name: `IBM Design for AI`,
start_url: `/`,
background_color: `#171717`,
theme_color: `#000000`,
display: `minimal-ui`,
include_favicon: false,
},
},
],
};