mirror of
https://github.com/codex-team/codex.docs.git
synced 2025-07-19 21:29:41 +02:00
Added enable parameter for rendering index page (#289)
This commit is contained in:
parent
8a8db5c136
commit
d3e0cb176c
3 changed files with 9 additions and 3 deletions
|
@ -111,7 +111,10 @@ export default async function buildStatic(): Promise<void> {
|
|||
await renderPage(page);
|
||||
}
|
||||
|
||||
await renderIndexPage(config.indexPageUri);
|
||||
// Check if index page is enabled
|
||||
if (config.indexPage.enabled) {
|
||||
await renderIndexPage(config.indexPage.uri);
|
||||
}
|
||||
console.log('Static files built');
|
||||
|
||||
console.log('Copy public directory');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue