Embedding Camunda in an iframe

Hi,
I’m new to camunda. I’d like to add camunda to angular 8 through an iframe. However when I try to add it throws an error below

Load denied by X-Frame-Options: http://localhost:8080/app/tasklist/default/ does not permit framing.

How can I deny X-Frame-Options in camunda?

Hi @martRugi
incase you are using SpringbootStarter you will need to add
.headers().frameOptions().sameOrigin().and()
to your config to allow xframe-option

Thank you @kavi That fixes my issue