* feat: graphql erabiltzen du * node bertsioa jeisten du * feat: netlify deployments sartzen du * feat: token-a sortzen du * chore: Gatsbyren aldagaiak berreskuratzen ditu * fix: query-a konpontzen du
30 lines
660 B
JavaScript
30 lines
660 B
JavaScript
module.exports = {
|
|
graphql: {
|
|
config: {
|
|
endpoint: "/graphql",
|
|
shadowCRUD: true,
|
|
playgroundAlways: false,
|
|
depthLimit: 7,
|
|
amountLimit: 100,
|
|
apolloServer: {
|
|
introspection: true,
|
|
},
|
|
},
|
|
},
|
|
"netlify-deployments": {
|
|
enabled: true,
|
|
config: {
|
|
accessToken: process.env.NETLIFY_DEPLOYMENTS_PLUGIN_ACCESS_TOKEN,
|
|
sites: [
|
|
{
|
|
name: "laba-webgunea",
|
|
id: "3e9ed70d-2f4b-4152-9aaf-1129570d01b4",
|
|
buildHook:
|
|
"https://api.netlify.com/build_hooks/61e338c09f4ef3bf644f86db",
|
|
branch: "main", // optional
|
|
},
|
|
],
|
|
},
|
|
},
|
|
};
|