mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-17 22:53:13 +02:00
22 lines
449 B
TypeScript
22 lines
449 B
TypeScript
import type { MetaRecord } from 'nextra'
|
|
|
|
const meta: MetaRecord = {
|
|
'what-is-self-hosting': {
|
|
title: 'What is Self-Hosting?',
|
|
},
|
|
'first-deployment': {
|
|
title: 'Your First Deployment',
|
|
},
|
|
'choosing-a-server': {
|
|
title: 'Choosing a Server',
|
|
},
|
|
'reverse-proxy': {
|
|
title: 'Setting Up a Reverse Proxy',
|
|
},
|
|
'starter-kit': {
|
|
title: 'The Starter Kit',
|
|
},
|
|
}
|
|
|
|
export default meta
|