The hyperlink prop on add text does not work. Code implementation below. Nothings change on my .pptx when I implement hyperlink

Hi @LeoFC97
Your code is incorrect - please include the options keyword as shown in the API Docs.
slide.addText(
[
{ text:'Visit the ' },
{ text:'PptxGenJS Project', options:{ hyperlink:{ url:'https://github.com/gitbrent/pptxgenjs', tooltip:'Visit Homepage' } } },
{ text:' or ' },
{ text:'(link without tooltip)', options:{hyperlink:{url:'https://github.com/gitbrent'}} }
],
{ x:0.5, y:5.35, w:6.0, h:0.6, margin:0.1, fill:'F1F1F1', fontSize:14 }
);

Thanks for the reply, but I'm still having the same problem.

hyperlink goes inside the options object (it's a child not a sibling)