mirror of
https://github.com/primer/css.git
synced 2024-11-23 03:10:10 +03:00
24761fa453
Co-Authored-By: Vinicius Depizzol <vdepizzol@gmail.com>
37 lines
867 B
JavaScript
37 lines
867 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
siteMetadata: {
|
|
title: 'Primer CSS',
|
|
shortName: 'CSS',
|
|
description: "CSS for GitHub's Primer design system",
|
|
imageUrl: 'https://user-images.githubusercontent.com/586552/47590375-121cad80-d93a-11e8-89f2-a1cf108e0548.png'
|
|
},
|
|
pathPrefix: '/css',
|
|
plugins: [
|
|
{
|
|
resolve: '@primer/gatsby-theme-doctocat',
|
|
options: {
|
|
defaultBranch: 'main',
|
|
repoRootPath: '..'
|
|
}
|
|
},
|
|
'gatsby-plugin-sass',
|
|
{
|
|
resolve: 'gatsby-plugin-svgr',
|
|
options: {
|
|
svgo: false
|
|
}
|
|
},
|
|
{
|
|
resolve: `gatsby-plugin-alias-imports`,
|
|
options: {
|
|
alias: {
|
|
'styled-components': path.resolve(__dirname, 'node_modules', 'styled-components'),
|
|
react: path.resolve(__dirname, 'node_modules', 'react')
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|