Files
30-seconds-of-code/config.js
2020-04-17 13:56:02 +03:00

21 lines
554 B
JavaScript

module.exports = {
// Project metadata
name: `30 seconds of code`,
description: `Curated collection of useful JavaScript snippets that you can understand in 30 seconds or less.`,
shortName: `30s`,
repositoryUrl: `https://github.com/30-seconds/30-seconds-of-code`,
siteUrl: `https://www.30secondsofcode.org`,
// Path information
snippetPath: `snippets`,
snippetDataPath: `snippet_data`,
// General information
language: {
short: `js`,
long: `JavaScript`
},
// Requirable JSONs
requirables: [
`snippets.json`
]
};