Files
30-seconds-of-code/config.js
Angelos Chalaris 019005e172 Update config.js
2019-11-07 16:07:43 +02:00

24 lines
638 B
JavaScript

module.exports = {
// Project metadata
name: `30 seconds of React`,
description: `Curated collection of useful React snippets that you can understand in 30 seconds or less.`,
shortName: `30s`,
repositoryUrl: `https://github.com/30-seconds/30-seconds-of-react`,
siteUrl: `https://react.30secondsofcode.org`,
// Path information
snippetPath: `snippets`,
snippetDataPath: `snippet_data`,
assetPath: `assets`,
pagePath: `src/docs/pages`,
staticPartsPath: `src/static-parts`,
// General information
language: {
short: `jsx`,
long: `React`
},
optionalLanguage: {
short: `css`,
long: `CSS`
}
};