mirror of
https://github.com/silverstripe/doc.silverstripe.org
synced 2024-10-22 17:05:50 +02:00
20 lines
498 B
JavaScript
20 lines
498 B
JavaScript
module.exports = [
|
|
{
|
|
resolve: `gatsby-source-git`,
|
|
options: {
|
|
name: `docs--4`,
|
|
remote: `https://github.com/silverstripe/developer-docs.git`,
|
|
branch: `4.11`,
|
|
patterns: `en/**`
|
|
}
|
|
},
|
|
{
|
|
resolve: `gatsby-source-git`,
|
|
options: {
|
|
name: `docs--3`,
|
|
remote: `https://github.com/silverstripe/developer-docs.git`,
|
|
branch: `3`,
|
|
patterns: `en/**`
|
|
}
|
|
},
|
|
]; |