You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
611 B
JavaScript
33 lines
611 B
JavaScript
module.exports = {
|
|
siteMetadata: {
|
|
title: "Studentská oborová rada IT PedF UK v Praze",
|
|
},
|
|
plugins: [
|
|
"gatsby-plugin-mdx",
|
|
{
|
|
resolve: "gatsby-source-filesystem",
|
|
options: {
|
|
name: "pages",
|
|
path: "./src/pages/",
|
|
},
|
|
__key: "pages",
|
|
},
|
|
],
|
|
};
|
|
|
|
module.exports = {
|
|
siteMetadata: {
|
|
title: "Studentská oborová rada IT PedF UK v Praze",
|
|
},
|
|
plugins: [
|
|
{
|
|
resolve: `gatsby-source-filesystem`,
|
|
options: {
|
|
name: `markdown-pages`,
|
|
path: `./src/markdown-pages`,
|
|
},
|
|
},
|
|
`gatsby-transformer-remark`,
|
|
],
|
|
}
|