mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-21 15:31:41 -04:00
* feat: extract `/plugins` Co-authored-by: Zachary Shilton <[email protected]> Co-authored-by: Adrien Delorme <[email protected]>
24 lines
385 B
JavaScript
24 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',
|
|
},
|
|
]
|