This is a Next.js Web app generated with Inrupt's demo template.
First install, then run the development server:
npm install
npm run devOpen http://localhost:3000 with your browser to see the result. To change the
port from the default of 3000, use the -p option on the dev script in your package.json, for
example to change our app to use port 3001 instead:
{
"scripts": {
"dev": "next dev -p 3001",
:
},
:
}