prismatic-io / embedded

Prismatic's library for embedding Prismatic.io into your application.
MIT License
24 stars 3 forks source link

Add support for custom google fonts #46

Closed bkegley closed 9 months ago

bkegley commented 9 months ago

This uses WebFontLoader to load custom Google fonts for use in embedded

Example usage:

prismatic.init({
  fontConfiguration: {
    google: {
      families: ["Inter"],
    },
  },
});
taylorreece commented 9 months ago

LGTM; I'm excited to support custom fonts!