First thanks for this tool. It is so convenient!
I have a db.json file like
{
"posts": [
{ "id": 1, "title": "json-server", "author": "typicode" }
],
"comments": [
{ "id": 1, "body": "some comment", "postId": 1 }
],
"profile": { "name": "typicode" }
}
Currently, the root URL http://localhost:3000/ returns a static page.
Is there an option to return this whole object above at root URL?
Thanks!