12 lines
199 B
JavaScript
12 lines
199 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
'gatsby-plugin-emotion',
|
|
{
|
|
resolve: 'gatsby-plugin-typography',
|
|
options: {
|
|
pathToConfigModule: 'site/util/typography'
|
|
}
|
|
}
|
|
]
|
|
};
|