Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Overview

Info
titleSupported in 7.1 or above

IIIF support was first added to DSpace in version 7.1.  It was not available in 7.0 or below.

DSpace supports the International Image Interoperability Framework (IIIF). The DSpace REST API implements the IIIF Presentation API version 2.1.1, IIIF Image API version 2.1.1, and the IIIF Search API version 1.0 (experimental). The DSpace Angular frontend uses the Mirador 3.0 viewer.

...

Code Block
# This builds and runs the DSpace UI with the Mirador Viewer in a single step
yarnnpm run start:mirador:prod

This will build and copy Mirador to your dist/ directory and start the frontend server.

...

Code Block
# Build Mirador viewer
yarnnpm run build:mirador
# Build DSpace UI for production
yarnnpm run build:prod
# Run the DSpace UI with Mirador viewer
yarnnpm run serve:ssr


Note
titleRunning in Development

In the Dspace 7.1 release, the Mirador viewer cannot be used when running in development mode. For now, you need to use a production build.

...