<t>If your manifest file is at the root level (where your index.html file is placed) you can reference it like the following in the `` tag of your index.html file:<br/>
<br/>
<br/>
<br/>
```<br/>
<br/>
Plus the `startUrl` property in the manifest file should have the value:<br/>
<br/>
`"start_url": "/"`<br/>
<br/>
as you target the root as starting point.<br/>
<br/>
Otherwise, if you would serve your app with a specific base URL, you should reflect it in the property value:<br/>
<br/>
```<br/>
Example: <br/>
<br/>
Considering --> www.myapp.com/my-other-url-part/<br/>
<br/>
Use:<br/>
"start_url": "/my-other-url-part/"<br/>
<br/>
Or simply:<br/>
"start_url": "./" <-- This would match any base-href != "/"<br/>
<br/>
```<br/>
<br/>
You should then set your web server to automatically serve the index.html file (this is often enabled per default)</t>