This is a Nuxt3 app that displays a list of Marvel characters. The app is built using the Marvel API
- List of Marvel characters
- Ability to filter characters by name
- Ability to view character details
- Dynamic Pagination
- Uses lazy loading for charachter images Document and uses Nuxt-img module
- Uses TailwindCss
- Includes a Dockerfile for easy deployment
To use this application, simply run the following commands:
# install dependencies
$ yarn install
# serve with hot reload at localhost:3000
$ yarn dev
# build for production and launch server
$ yarn build
$ yarn start
# generate static project
$ yarn generate
To deploy this application using Docker, you can use the included Dockerfile. Simply run the following commands:
$ docker build -t marvel-app .
$ docker run -p 3000:3000 marvel-app