generated from gregberge/smooth-doc-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
38 lines (37 loc) · 1.33 KB
/
gatsby-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// remind me to change it to main as branch renames may happen
// in case you're not on Verceljust prefix it when running npm scripts with VERCEL_GIT_COMMIT_REF=beta npm run <script-name>
const gitBranch = process.env.VERCEL_GIT_COMMIT_REF || "master";
module.exports = {
flags: {
// Only enable experimental flags at your own risk.
DEV_SSR: true,
PRESERVE_WEBPACK_CACHE: true,
PRESERVE_FILE_DOWNLOAD_CACHE: true,
FAST_DEV: true,
},
siteMetadata: {
siteTitle: `Code Server Boilerplates Docs | The Pins Team`,
defaultTitle: `Code Server Boilerplates Docs | The Pins Team`,
siteTitleShort: `Code Server Boilerplates Docs`,
siteDescription: `Official docs for maintaining deploy-code-server-like templates for maintainers and usage for usual users.`,
siteUrl: `https://csb-docs.community-lores.gq`, // will be csb-docs.lores.community soon
siteAuthor: `The Pins Team and Docs contributors`,
//siteImage: `/banner.png`,
siteLanguage: `en`,
themeColor: `#8257E6`,
basePath: `/`,
},
plugins: [
{
resolve: `@rocketseat/gatsby-theme-docs`,
options: {
basePath: `/`,
configPath: `src/config`,
docsPath: `src/docs`,
repositoryUrl: `https://github.com/code-server-boilerplates/docs`,
baseDir: `/`,
branch: gitBranch,
},
},
],
};