* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
* @format
*/
module.exports = {
siteMetadata: {
title: 'Yoga Layout',
},
plugins: [
'gatsby-plugin-react-next',
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-plugin-less`,
options: {
theme: {
'primary-color': '#6BCEBB',
},
},
},
{
resolve: 'gatsby-plugin-antd',
options: {
style: true,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/contents`,
name: 'markdown-pages',
},
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-prismjs`,
options: {
classPrefix: 'language-',
},
},
],
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-44373548-24',
head: false,
anonymize: true,
},
},
],
};