doc.silverstripe.org/sources-docs.js
Steve Boyd 547a9789a1
MNT Update v5 docs branch to 5.0 (#255)
Also convert backtick to single quote in docs src, as this seems to fix
the problem where the 5.0 branch wasn't being picked up as a valid
source.
2023-03-13 17:05:49 +13:00

30 lines
621 B
JavaScript

module.exports = [
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5',
remote: 'https://github.com/silverstripe/developer-docs.git',
branch: '5.0',
patterns: 'en/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--4',
remote: 'https://github.com/silverstripe/developer-docs.git',
branch: '4.13',
patterns: 'en/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--3',
remote: 'https://github.com/silverstripe/developer-docs.git',
branch: '3',
patterns: 'en/**'
}
},
];