mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-15 22:20:33 -04:00
* feat: extract `/plugins` Co-authored-by: Zachary Shilton <4624598+zchsh@users.noreply.github.com> Co-authored-by: Adrien Delorme <azr@users.noreply.github.com>
23 lines
385 B
JavaScript
23 lines
385 B
JavaScript
export default [
|
|
{ text: 'Overview', url: '/', type: 'inbound' },
|
|
{
|
|
text: 'Tutorials',
|
|
url: 'https://learn.hashicorp.com/packer',
|
|
type: 'outbound',
|
|
},
|
|
{
|
|
text: 'Docs',
|
|
url: '/docs',
|
|
type: 'inbound',
|
|
},
|
|
{
|
|
text: 'Plugins',
|
|
url: '/plugins',
|
|
type: 'inbound',
|
|
},
|
|
{
|
|
text: 'Community',
|
|
url: '/community',
|
|
type: 'inbound',
|
|
},
|
|
]
|