In my browser, getting this CORS issue from the server to my frontend , we also added our frontend domain to the cors allowed origin in default json and restarted the docker server but still facing the this CORS error
Can you please guide us with how to resolve this CORS issue
We want to send the in-editor docx content to our backend as .docx format to store it separately but we are unable to do it
We have tried adding our frontend url localhost:3000 to corsAllowedOrigins in the default.json file but it showed the same error
When we looked for localhost:8080/coauthoring/CommandService.ashx it returend {error:6}
In our default.json
“services”: {
“CoAuthoring”: {
“http”: {
“allowedCorsOrigins”: [“http://localhost:3000”]
},