1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-19 05:09:41 +02:00

Added enable parameter for rendering index page (#289)

This commit is contained in:
Vyacheslav Chernyshev 2022-12-13 15:19:50 +03:00 committed by GitHub
parent 8a8db5c136
commit d3e0cb176c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 3 deletions

View file

@ -1,7 +1,7 @@
{ {
"name": "codex.docs", "name": "codex.docs",
"license": "Apache-2.0", "license": "Apache-2.0",
"version": "v2.0.0-rc.4", "version": "v2.2.0-rc.1",
"type": "module", "type": "module",
"bin": { "bin": {
"codex.docs": "dist/backend/app.js" "codex.docs": "dist/backend/app.js"

View file

@ -111,7 +111,10 @@ export default async function buildStatic(): Promise<void> {
await renderPage(page); 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('Static files built');
console.log('Copy public directory'); console.log('Copy public directory');

View file

@ -90,7 +90,10 @@ const FrontendConfig = z.object({
*/ */
const StaticBuildConfig = z.object({ const StaticBuildConfig = z.object({
outputDir: z.string(), // Output directory for static build outputDir: z.string(), // Output directory for static build
indexPageUri: z.string(), // URI for index page to render indexPage: z.object({
enabled: z.boolean(), // Is index page enabled
uri: z.string(), // Index page uri
}),
}); });
export type StaticBuildConfig = z.infer<typeof StaticBuildConfig>; export type StaticBuildConfig = z.infer<typeof StaticBuildConfig>;