|
| 1 | +import { defineConfig, type DefaultTheme } from 'vitepress'; |
| 2 | + |
| 3 | +// https://vitepress.dev/reference/site-config |
| 4 | +export default defineConfig({ |
| 5 | + title: "Nginx Proxy Manager", |
| 6 | + description: "Expose your services easily and securely", |
| 7 | + head: [ |
| 8 | + ["link", { rel: "icon", href: "/icon.png" }], |
| 9 | + ["meta", { name: "description", content: "Docker container and built in Web Application for managing Nginx proxy hosts with a simple, powerful interface, providing free SSL support via Let's Encrypt" }], |
| 10 | + ["meta", { property: "og:title", content: "Nginx Proxy Manager" }], |
| 11 | + ["meta", { property: "og:description", content: "Docker container and built in Web Application for managing Nginx proxy hosts with a simple, powerful interface, providing free SSL support via Let's Encrypt"}], |
| 12 | + ["meta", { property: "og:type", content: "website" }], |
| 13 | + ["meta", { property: "og:url", content: "https://nginxproxymanager.com/" }], |
| 14 | + ["meta", { property: "og:image", content: "https://nginxproxymanager.com/icon.png" }], |
| 15 | + ["meta", { name: "twitter:card", content: "summary"}], |
| 16 | + ["meta", { name: "twitter:title", content: "Nginx Proxy Manager"}], |
| 17 | + ["meta", { name: "twitter:description", content: "Docker container and built in Web Application for managing Nginx proxy hosts with a simple, powerful interface, providing free SSL support via Let's Encrypt"}], |
| 18 | + ["meta", { name: "twitter:image", content: "https://nginxproxymanager.com/icon.png"}], |
| 19 | + ["meta", { name: "twitter:alt", content: "Nginx Proxy Manager"}], |
| 20 | + // GA |
| 21 | + ['script', { async: 'true', src: 'https://www.googletagmanager.com/gtag/js?id=G-TXT8F5WY5B'}], |
| 22 | + ['script', {}, "window.dataLayer = window.dataLayer || [];\nfunction gtag(){dataLayer.push(arguments);}\ngtag('js', new Date());\ngtag('config', 'G-TXT8F5WY5B');"], |
| 23 | + ], |
| 24 | + sitemap: { |
| 25 | + hostname: 'https://nginxproxymanager.com' |
| 26 | + }, |
| 27 | + metaChunk: true, |
| 28 | + srcDir: './src', |
| 29 | + outDir: './dist', |
| 30 | + themeConfig: { |
| 31 | + // https://vitepress.dev/reference/default-theme-config |
| 32 | + logo: { src: '/logo.svg', width: 24, height: 24 }, |
| 33 | + nav: [ |
| 34 | + { text: 'Setup', link: '/setup/' }, |
| 35 | + ], |
| 36 | + sidebar: [ |
| 37 | + { |
| 38 | + items: [ |
| 39 | + // { text: 'Home', link: '/' }, |
| 40 | + { text: 'Guide', link: '/guide/' }, |
| 41 | + { text: 'Screenshots', link: '/screenshots/' }, |
| 42 | + { text: 'Setup Instructions', link: '/setup/' }, |
| 43 | + { text: 'Advanced Configuration', link: '/advanced-config/' }, |
| 44 | + { text: 'Upgrading', link: '/upgrading/' }, |
| 45 | + { text: 'Frequently Asked Questions', link: '/faq/' }, |
| 46 | + { text: 'Third Party', link: '/third-party/' }, |
| 47 | + ] |
| 48 | + } |
| 49 | + ], |
| 50 | + socialLinks: [ |
| 51 | + { icon: 'github', link: 'https://github.com/NginxProxyManager/nginx-proxy-manager' } |
| 52 | + ], |
| 53 | + search: { |
| 54 | + provider: 'local' |
| 55 | + }, |
| 56 | + footer: { |
| 57 | + message: 'Released under the MIT License.', |
| 58 | + copyright: 'Copyright © 2016-present jc21.com' |
| 59 | + } |
| 60 | + } |
| 61 | +}); |
0 commit comments