-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgatsby-config.js
34 lines (33 loc) · 897 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
30
31
32
33
34
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
module.exports = {
/* Your site config here */
plugins: [
`gatsby-plugin-sass`,
{
resolve: `gatsby-plugin-firebase`,
options: {
credentials: {
apiKey: "AIzaSyBclRqQlcTS_HN6Zr466nzNMzauO_NwkqI",
authDomain: "turbo-menu.firebaseapp.com",
databaseURL: "https://turbo-menu.firebaseio.com",
projectId: "turbo-menu",
storageBucket: "turbo-menu.appspot.com",
messagingSenderId: "570866613735",
appId: "1:570866613735:web:eda6d13a5a9c172b2e9142",
measurementId: "G-L9WKYFQ172",
},
},
},
`gatsby-plugin-react-helmet`,
{
resolve: 'gatsby-plugin-tidio-chat',
options: {
tidioKey: 'qmbnv4foymi06w23ho9lplcraczmtklu',
},
},
],
}