20 lines
360 B
JavaScript
20 lines
360 B
JavaScript
/**
|
|
* Configure your Gatsby site with this file.
|
|
*
|
|
* See: https://www.gatsbyjs.com/docs/reference/config-files/gatsby-config/
|
|
*/
|
|
|
|
/**
|
|
* @type {import('gatsby').GatsbyConfig}
|
|
*/
|
|
module.exports = {
|
|
plugins: [
|
|
{
|
|
resolve: `gatsby-plugin-typography`,
|
|
options: {
|
|
pathToConfigModule: `src/utils/typography`,
|
|
},
|
|
},
|
|
],
|
|
}
|