Good morning, jsreport team. I would like to edit my content in VS Code (because of tag changes, other extensions). However, when I enable the syncModifications flag, changes that I make in VSCode are not picked up by jsreport.
Here's my setup.
jsreport is running as a docker container and I've mapped /app/data to a folder on my local machine. I can see/change the files just fine locally on my PC.
Here is my relevant config file settings:
"store": {
"provider": "fs"
},
"extensions": {
"fs-store": {
"dataDirectory": "/app/data",
"syncModifications": true
},
"sync": {
"usePolling": false
}
}
I've tried usePolling: true
and usePolling: false
and neither appears to make a difference.
What am I missing :)