mernmail-website/constants/docLinks.js
Dorian Niemiec 5698071d47
Some checks failed
Deploy Next.js application / deploy (push) Has been cancelled
docs: add guide on deployment with PM2 + NGINX
2024-11-08 17:20:38 +01:00

49 lines
858 B
JavaScript

export default [
{
href: "/docs",
target: "_self",
label: "Welcome to the MERNMail documentation!"
},
{
href: "/docs/getting-started",
target: "_self",
label: "Getting started"
},
{
href: "/docs/demo",
target: "_self",
label: "Official demo"
},
{
href: "/docs/features",
target: "_self",
label: "Features"
},
{
href: "/docs/configuration",
target: "_self",
label: "Configuration"
},
{
href: "/docs/usage",
target: "_self",
label: "Usage"
},
{
href: "/docs/deployment",
target: "_self",
label: "Deployment"
},
{
href: "/docs/deployment/svrjs",
target: "_self",
sub: true,
label: "Deploy with SVR.JS"
},
{
href: "/docs/deployment/pm2-nginx",
target: "_self",
sub: true,
label: "Deploy with PM2 + NGINX"
}
];