Node module install error, need to use "force" but don't know how?

Thanks @adamkeenan88

Parse Error: < studyBuddy /></h3>

This is because < studyBuddy /> is getting parsed as a HTML tag or component that doesn’t exist. So in src/template.html change

<h3 class="project-wrapper__text-title">< studyBuddy /></h3>

to

<h3 class="project-wrapper__text-title">&lt; studyBuddy /&gt;</h3>

The &lt; and &gt; are then changed to < and > when the page is viewed in the browser.

1 Like