0

I have a SharePoint web part where I'm using the MGT Person component.

gulp serve is working just fine.

However, when I bundle/package/deploy the app and add my web part to the page, I get the following error:

Manifest not found for component id "78b11c7d-7ca8-47cb-a93c-d3beabb519a1" and version "2.3.0".

Looking at the packaged files shows me that 78b11c7d-7ca8-47cb-a93c-d3beabb519a1 represents mgt-spfx library and it is indeed version 2.3.0. I have no idea how to proceed at this point. Any ideas on how to debug?

Mike Homol
  • 481
  • 5
  • 19
  • Are you able to bundle/package/deploy our sample: https://github.com/microsoftgraph/microsoft-graph-toolkit/tree/main/samples/sp-webpart by itself? – Nic Vogt Oct 13 '21 at 20:10

2 Answers2

0

Late answer but I had this problem this week and I solved it by uploading the corresponding mgt-spfx sppkg to the app catalog in tenant level. This error occurs if you don't have the sppkg of the version used in your webpart installed in your site.

0

I got the same issue, I resolved it by changing the id in the webpart manifest.json with the product id present in the app catalog. webpart manifest.json

xander cage
  • 156
  • 2
  • 3
  • 11