UNPKG

gatsby-theme-events-typescript

Version:

This is a starter kit for GatsbyJS Themes written in TypeScript. It includes the bare essentials for you to get started.

19 lines (18 loc) 431 B
module.exports = ({ contentPath = 'data' }) => ({ plugins: [ `gatsby-plugin-typescript`, 'gatsby-plugin-theme-ui', { resolve: 'gatsby-source-filesystem', options: { path: contentPath, }, }, { resolve: 'gatsby-transformer-yaml', options: { typeName: 'Event', }, }, ], });