"Manifest: Line: 1, column: 1, Syntax error"
"Manifest: Line: 1, column: 1, Syntax error"
"Manifest: Line: 1, column: 1, Syntax error"
Re: "Manifest: Line: 1, column: 1, Syntax error"
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:
```
```
Plus the `startUrl` property in the manifest file should have the value:
`"start_url": "/"`
as you target the root as starting point.
Otherwise, if you would serve your app with a specific base URL, you should reflect it in the property value:
```
Example:
Considering --> www.myapp.com/my-other-url-part/
Use:
"start_url": "/my-other-url-part/"
Or simply:
"start_url": "./" <-- This would match any base-href != "/"
```
You should then set your web server to automatically serve the index.html file (this is often enabled per default)
```
```
Plus the `startUrl` property in the manifest file should have the value:
`"start_url": "/"`
as you target the root as starting point.
Otherwise, if you would serve your app with a specific base URL, you should reflect it in the property value:
```
Example:
Considering --> www.myapp.com/my-other-url-part/
Use:
"start_url": "/my-other-url-part/"
Or simply:
"start_url": "./" <-- This would match any base-href != "/"
```
You should then set your web server to automatically serve the index.html file (this is often enabled per default)