51f1ae94ef
The new make command `make gen-docs` is introduced. It will build a markdown file from the CRD introduced by Kilo. The generation of the docs is a requirement for building the website. Signed-off-by: leonnicolas <leonloechner@gmx.de>
20 lines
431 B
JavaScript
20 lines
431 B
JavaScript
module.exports = {
|
|
docs: [
|
|
{
|
|
type: 'doc',
|
|
id: 'introduction',
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Guides',
|
|
items: ['topology', 'vpn', 'vpn-server', 'multi-cluster-services', 'network-policies', 'userspace-wireguard', 'peer-validation'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Reference',
|
|
items: ['annotations', 'kg', 'kgctl', 'api'],
|
|
},
|
|
//Features: ['mdx'],
|
|
],
|
|
};
|