Skip to content

Commit 757a046

Browse files
committed
feat(build-docs): add root 404 page
1 parent aeb0f44 commit 757a046

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/build-docs/src/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ async function main() {
2222
buildSwagger(context);
2323
buildScriptApi(context);
2424

25-
// Copy index file.
25+
// Copy index and 404 files.
2626
cpSync(join(__dirname, "index.html"), join(context.baseDir, "index.html"));
27+
cpSync(join(context.baseDir, "user-guide/404.html"), join(context.baseDir, "404.html"));
2728
}
2829

2930
main();

0 commit comments

Comments
 (0)