Skip to main content
Mintlify automatically serves static assets from your documentation repository at the appropriate path on your domain. For example, if you have /images/my-logo.png in your repo, the image file is available at https://docs.your-project.com/images/my-logo.png. You can make any supported file type available to your users, including OpenAPI specifications, images, videos, and more. Files must be less than 20 MB for images and 100 MB for other file types.

Supported file types

Image formats

  • .jpeg, .jpg, .jfif, .pjpeg, .pjp
  • .png
  • .svg, .svgz
  • .ico
  • .webp
  • .gif, .apng
  • .avif
  • .bmp
  • .tiff, .tif

Video formats

  • .mp4
  • .webm
  • .ogg
  • .avi
  • .mov
  • .wmv
  • .flv
  • .mkv
  • .m4v

Audio formats

  • .mp3
  • .wav
  • .flac
  • .aac
  • .ogg
  • .wma
  • .m4a

Font formats

  • .woff
  • .woff2
  • .ttf
  • .otf
  • .eot

Document formats

Document formats are only available for Enterprise plans.
  • .pdf
  • .txt
  • .doc, .docx
  • .xls, .xlsx
  • .ppt, .pptx
  • .rtf
  • .odt, .ods, .odp

Data formats

Data formats are only available for Enterprise plans.
  • .csv
  • .tsv
  • .xml

Archive formats

Archive formats are only available for Enterprise plans.
  • .zip
  • .rar
  • .7z
  • .tar
  • .gz
  • .bz2

File organization

Organize your files using folders to keep your repository easy to navigate:
/your-project
  |- docs.json
  |- images/
    |- logo.png
    |- screenshots/
      |- dashboard.png
  |- assets/
    |- whitepaper.pdf
    |- demo-video.mp4
Files are served from the root of your domain, so the structure in your repository directly maps to the URL structure. From the previous example, assets/whitepaper.pdf would be available at https://docs.your-project.com/assets/whitepaper.pdf.
I