|
| 1 | +import { defineConfig } from 'vitepress' |
| 2 | + |
| 3 | +// https://vitepress.dev/reference/site-config |
| 4 | +export default defineConfig({ |
| 5 | + title: "musl dyne compilers", |
| 6 | + description: "C/C++ toolchains ready to use", |
| 7 | + themeConfig: { |
| 8 | + footer: { |
| 9 | + copyright: 'Copyright (C) 2025 <a href="https://dyne.org">Dyne.org</a> - MIT License' |
| 10 | + }, |
| 11 | + // https://vitepress.dev/reference/default-theme-config |
| 12 | + nav: [ |
| 13 | + { text: 'Home', link: '/' }, |
| 14 | + { text: 'Dyne.org', link: 'https://dyne.org' }, |
| 15 | + { text: 'Musl', link: 'https://musl-libc.org' }, |
| 16 | + { text: 'GCC', link: 'https://gcc.gnu.org' } |
| 17 | + ], |
| 18 | + sidebar: [ |
| 19 | + { |
| 20 | + text: 'Links', |
| 21 | + items: [ |
| 22 | + { text: 'Readme', link: 'https://github.com/dyne/musl-dyne/blob/master/README.md' }, |
| 23 | + { text: 'Downloads', link: 'https://github.com/dyne/musl-dyne/releases' }, |
| 24 | + { text: 'Security', link: 'https://github.com/dyne/musl-dyne?tab=security-ov-file#readme' } |
| 25 | + ] |
| 26 | + } |
| 27 | + ], |
| 28 | + socialLinks: [ |
| 29 | + { icon: 'linkedin', link: 'https://www.linkedin.com/company/dyne-org' }, |
| 30 | + { icon: 'mastodon', link: 'https://toot.community/@dyne' }, |
| 31 | + { icon: 'github', link: 'https://github.com/dyne/musl-dyne' }, |
| 32 | + { icon: 'maildotru', link: 'mailto:info@dyne.org' } |
| 33 | + ] |
| 34 | + }, |
| 35 | + markdown: { |
| 36 | + theme: { |
| 37 | + light: "catppuccin-latte", |
| 38 | + dark: "catppuccin-mocha", |
| 39 | + } |
| 40 | + } |
| 41 | +}) |
0 commit comments