nexrender-sanity-upload
v1.0.4
Published
Nexrender action to upload assets to Sanity
Downloads
10
Readme
nexrender-sanity-upload
Upload assets to a Sanity account and connect them to a document
Install
npm install nexrender-sanity-upload
How to use
- Add this module to
postrender
- Choose the file to upload
- In params provide Sanity connection information
- Provide Sanity document & destination field information
{
"template": {
"src": "https://example.com/templates/ae-template-to-use.aep",
"composition": "my_composition"
},
"assets": [],
"actions": {
"postrender": [
{
"module": "nexrender-sanity-upload",
"input": "the-file-to-upload",
"params": {
"projectId": "Sanity project ID",
"dataset": "dataset name, usually production",
"apiVersion": "api version (see Sanity docs)",
"token": "your API token",
"useCdn": "true or false"
},
"document": "ID of document to put the asset",
"fieldName": "name of field where the asset goes",
"fieldType": "image or file",
"filename": "what name should Sanity give the file"
}
]
}
}