zepio/doczrc.js

30 lines
725 B
JavaScript

/* eslint-disable import/no-extraneous-dependencies */
import { css } from 'docz-plugin-css';
export default {
title: 'Zcash Foundation',
description: 'Zcash Foundation User Interface Styleguide',
plugins: [css()],
htmlContext: {
head: {
links: [
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css?family=PT+Sans:400,700',
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css?family=Source+Code+Pro',
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css?family=Roboto:300,400,700',
},
],
},
body: {
raw: '<div id="modal-root" />',
},
},
};