-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.ts
40 lines (38 loc) · 1.02 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
import type { GatsbyConfig } from "gatsby";
const config: GatsbyConfig = {
plugins: [
{
resolve: `gatsby-plugin-jaen`,
options: {
remote: {
repository: "getcronit/cronit.io",
},
zitadel: {
organizationId: "252746033782587395",
clientId: "252746210698395651@services",
authority: "https://accounts.cronit.io",
redirectUri:
process.env.NODE_ENV === "production"
? "https://cronit.io"
: "http://localhost:8000",
projectIds: [
"252765861113233411",
"252899191242620931",
"260237544631828483",
],
},
sentry: {
org: "cronit",
project: "cronit-io",
dsn: "https://[email protected]/11",
},
googleAnalytics: {
// trackingIds: ["G-M58K75M9PG"],
},
},
},
"gatsby-jaen-mailpress",
// "gatsby-plugin-postcss",
],
};
export default config;