-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy pathplugins.js
More file actions
35 lines (35 loc) · 913 Bytes
/
plugins.js
File metadata and controls
35 lines (35 loc) · 913 Bytes
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
module.exports = ({ env }) => ({
'import-export-entries': {
enabled: true,
config: {
// See `Config` section.
},
},
upload: {
config: {
provider: 'cloudinary',
providerOptions: {
cloud_name: env('CLOUDINARY_NAME'),
api_key: env('CLOUDINARY_KEY'),
api_secret: env('CLOUDINARY_SECRET'),
},
actionOptions: {
upload: {},
delete: {},
},
},
},
'generate-data': {
enabled: true,
},
"vercel-deploy": {
enabled: true,
config: {
deployHook: process.env.VERCEL_DEPLOY_PLUGIN_HOOK,
apiToken: process.env.VERCEL_DEPLOY_PLUGIN_API_TOKEN,
appFilter: process.env.VERCEL_DEPLOY_PLUGIN_APP_FILTER,
teamFilter: process.env.VERCEL_DEPLOY_PLUGIN_TEAM_FILTER,
roles: ["strapi-super-admin"],
},
}
});