The manifest file is a way to tell web browsers, and especially mobile devices, how to show your app. It is basically a JSON file in which you specify many properties along with their values.
Creating Our Manifest
In Chapter 1, we created the manifest file with a generator. In this chapter, we create it from scratch to acquire an understanding of its properties.
Our file is now ready, but we need to add some properties so that web and mobile ...