|
| 1 | +import { defineConfig } from 'vitepress' |
| 2 | + |
| 3 | +// https://vitepress.dev/reference/site-config |
| 4 | +export default defineConfig({ |
| 5 | + lastUpdated: true, |
| 6 | + ignoreDeadLinks: true, |
| 7 | + title: "NetApp Innovation Labs", |
| 8 | + description: "This is the gateway to explore and experiment with our Early Access Software. By participating, you can help shape the future development and direction of these cutting-edge solutions.", |
| 9 | + themeConfig: { |
| 10 | + search: { |
| 11 | + provider: 'local' |
| 12 | + }, |
| 13 | + siteTitle: "Innovation Labs", |
| 14 | + logo: { |
| 15 | + light: 'n-black.svg', |
| 16 | + dark: 'n-white.svg', |
| 17 | + alt: 'NetApp Logo' |
| 18 | + }, |
| 19 | + nav: [ |
| 20 | + { text: 'Home', link: '/' }, |
| 21 | + { text: 'Content Posts', link: '/content/posts' }, |
| 22 | + { text: 'Projects', link: '/projects' } |
| 23 | + ], |
| 24 | + |
| 25 | + sidebar: [ |
| 26 | + { text: 'Blog Posts', link: '/blog/posts' }, |
| 27 | + { text: 'Projects', link: '/projects', }, |
| 28 | + { |
| 29 | + text: 'Cloud', |
| 30 | + items: [ |
| 31 | + { text: 'AWS Outpost iSCSI Support', link: '/projects/cloud/aws-outpost-iscsi-support' }, |
| 32 | + ] |
| 33 | + }, |
| 34 | + { |
| 35 | + text: 'Containers', |
| 36 | + items: [ |
| 37 | + { text: 'Consoles for OpenShift', link: '/projects/containers/openshift-consoles'}, |
| 38 | + ] |
| 39 | + }, |
| 40 | + { |
| 41 | + text: 'ML/AI', |
| 42 | + items: [ |
| 43 | + { |
| 44 | + text: 'Neo', link: '/projects/neo/core/overview', |
| 45 | + collapsed: true, |
| 46 | + items: [ |
| 47 | + { text: 'Introduction', link: '/projects/neo/core/introduction' }, |
| 48 | + { text: 'Release Notes', link: '/projects/neo/core/release-notes', |
| 49 | + items: [ |
| 50 | + { text: 'Core', link: '/projects/neo/core/rn-core' }, |
| 51 | + { text: 'Console', link: '/projects/neo/core/rn-console' }, |
| 52 | + ], |
| 53 | + }, |
| 54 | + { text: 'Prerequisites', link: '/projects/neo/core/prerequisites' }, |
| 55 | + { text: 'Quick Start', link: '/projects/neo/core/quick-start', |
| 56 | + items: [ |
| 57 | + { text: 'Kubernetes', link: '/projects/neo/core/qs-kubernetes' }, |
| 58 | + { text: 'Docker', link: '/projects/neo/core/qs-docker' }, |
| 59 | + { text: 'Podman', link: '/projects/neo/core/qs-podman' }, |
| 60 | + ], |
| 61 | + }, |
| 62 | + { text: 'Deployment', link: '/projects/neo/core/deployment', |
| 63 | + items: [ |
| 64 | + { text: 'Configuration', link: '/projects/neo/core/d-configuration' }, |
| 65 | + { text: 'Sizing', link: '/projects/neo/core/d-sizing' }, |
| 66 | + { text: 'Upgrades', link: '/projects/neo/core/d-upgrades' }, |
| 67 | + ], |
| 68 | + }, |
| 69 | + { text: 'Management', link: '/projects/neo/core/management', |
| 70 | + items: [ |
| 71 | + { text: 'Neo Console', link: '/projects/neo/core/m-console' }, |
| 72 | + { text: 'Microsoft 365 Copilot', link: '/projects/neo/core/m-m365-copilot.md' }, |
| 73 | + { text: 'API', link: '/projects/neo/core/m-api' }, |
| 74 | + { text: 'MCP', link: '/projects/neo/core/m-mcp' }, |
| 75 | + { text: 'Users', link: '/projects/neo/core/m-users' }, |
| 76 | + { text: 'Shares', link: '/projects/neo/core/m-shares' }, |
| 77 | + { text: 'Files', link: '/projects/neo/core/m-files' }, |
| 78 | + { text: 'Rules & Filters', link: '/projects/neo/core/m-rules-filters' }, |
| 79 | + { text: 'Items Level Permissions', link: '/projects/neo/core/m-acls' }, |
| 80 | + { text: 'Shares', link: '/projects/neo/core/m-shares' }, |
| 81 | + ], |
| 82 | + }, |
| 83 | + { text: 'Security', link: '/projects/neo/core/security' }, |
| 84 | + { text: 'Troubleshooting', link: '/projects/neo/core/troubleshooting'}, |
| 85 | + ], |
| 86 | + }, |
| 87 | + { text: 'Neo UI Framework', link: '/projects/neo/uif/ui-framework' }, |
| 88 | + { text: 'Neo Fuse Client', link: '/projects/neo/nfc/fuse-client' }, |
| 89 | + ] |
| 90 | + }, |
| 91 | + ], |
| 92 | + |
| 93 | + socialLinks: [ |
| 94 | + { icon: 'github', link: 'https://github.com/NetApp/Innovation-Labs', ariaLabel: 'GitHub' } |
| 95 | + ], |
| 96 | + footer: { |
| 97 | + copyright: 'Copyright © 2025 NetApp' |
| 98 | + } |
| 99 | + } |
| 100 | +}) |
0 commit comments