1
1
mirror of https://github.com/primer/css.git synced 2024-11-26 23:56:04 +03:00
css/gatsby-docs/gatsby-config.js

19 lines
362 B
JavaScript
Raw Normal View History

2019-07-30 02:56:17 +03:00
const path = require('path')
module.exports = {
2019-08-03 01:50:13 +03:00
siteMetadata: {
title: 'Primer CSS',
shortName: 'CSS',
description: "CSS for GitHub's Primer design system"
},
2019-07-30 02:56:17 +03:00
plugins: [
{
resolve: '@primer/gatsby-theme-doctocat',
options: {
repoRootPath: path.resolve(process.cwd(), '..')
}
},
'gatsby-plugin-sass'
]
}