Inital commit

This commit is contained in:
Stuart Taylor
2018-03-26 13:01:24 +01:00
committed by Mrugesh Mohapatra
parent f022177352
commit e856f0538c
23 changed files with 23371 additions and 0 deletions

View File

@ -0,0 +1,21 @@
const path = require('path');
const { getChallengesByFile } = require('../seed/getChallenges');
module.exports = {
siteMetadata: {
title: 'freeCodeCamp | Learn to code and help non-profits',
siteUrl: 'https://learn.freecodecamp.org'
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: 'fcc-source-challenges',
options: {
name: 'challenges',
path: path.resolve(__dirname, '../seed/challenges'),
source: getChallengesByFile
}
},
'gatsby-transformer-json'
]
};