Methodology
Documentation
How to do documentation for Stapleton Group
All documentation for Stapleton Group has been done using Docus
This documentation was started with the following command:
npx create-docus docs
I had to override the heading by overriding the header title in app.config.ts
app.config.ts
export default defineAppConfig({
title: "Stapleton",
description: "Documentation for **Stapleton Group** projects and methodologies.",
theme: {
dark: true,
},
header: {
title: "STAPLETON GROUP",
}
});
I had to remove the import of defineAppConfig
because it failed to compile because of the
app.config.ts being used for the server as well.