How do I import an image in my Stencil component?

52 Views Asked by At

I have my image uploaded in ../../../public-storybook/images/navbar/, but I can't reference it inside my component!

I tried with getAssetPath, and still not working!

private defaultProfileImage: string = getAssetPath('../../../public-storybook/images/navbar/default_image.png'); = not working.

@State() defaultProfileImage: string = '../../../public-storybook/images/navbar/default_image.png' = not working.

<img src={/public-storybook/images/navbar/default_image.png} /> = not working!

0

There are 0 best solutions below