Hi Rushikesh, you may try the following approach, assuming you have assets folder with image.png file:
in package.json add copy with the list of paths you would like to include, for example:
{
"name": "tutorial-application",
(...)
"c8y": {
"application": {
"name": "tutorial application",
"contextPath": "tutorial-application",
(...)
"copy": [
"assets"
]
}
}
(...)
}
and then in your template:
<img [src]="'image.png'">
Such an image should be displayed both during local development as well as in the deployed app.
