|
| 1 | +import { defineConfig } from "vitepress"; |
| 2 | + |
| 3 | +// https://vitepress.dev/reference/site-config |
| 4 | +export default defineConfig({ |
| 5 | + base: "/QuickView", |
| 6 | + title: "E3SM QuickView", |
| 7 | + description: |
| 8 | + "How to start with the E3SM QuickView suite to look at your climate data", |
| 9 | + head: [["link", { rel: "stylesheet", href: "/custom.css" }]], |
| 10 | + themeConfig: { |
| 11 | + // https://vitepress.dev/reference/default-theme-config |
| 12 | + search: { |
| 13 | + provider: "local", |
| 14 | + }, |
| 15 | + logo: "/icon-full.png", |
| 16 | + nav: [ |
| 17 | + { text: "Home", link: "/" }, |
| 18 | + { text: "NERSC", link: "/nersc/" }, |
| 19 | + { text: "Guides", link: "/guides/data" }, |
| 20 | + ], |
| 21 | + |
| 22 | + sidebar: { |
| 23 | + "/nersc/": [ |
| 24 | + { |
| 25 | + text: "Connecting to NERSC", |
| 26 | + items: [{ text: "Login", link: "/nersc/login" }], |
| 27 | + }, |
| 28 | + { |
| 29 | + text: "Perlmutter", |
| 30 | + items: [ |
| 31 | + { text: "Introduction", link: "/nersc/perlmutter" }, |
| 32 | + { text: "Quick View", link: "/nersc/perlmutter-run-quickview" }, |
| 33 | + { |
| 34 | + text: "Quick Compare", |
| 35 | + link: "/nersc/perlmutter-run-quickcompare", |
| 36 | + }, |
| 37 | + ], |
| 38 | + }, |
| 39 | + ], |
| 40 | + "/guides/": [ |
| 41 | + { |
| 42 | + text: "Introduction", |
| 43 | + items: [ |
| 44 | + { text: "Data Format", link: "/guides/data" }, |
| 45 | + { text: "Installation", link: "/guides/installation" }, |
| 46 | + ], |
| 47 | + }, |
| 48 | + { |
| 49 | + text: "Quick View", |
| 50 | + items: [ |
| 51 | + { text: "Getting started", link: "/guides/quickview" }, |
| 52 | + { text: "Resources", link: "/guides/quickview/resources" }, |
| 53 | + ], |
| 54 | + }, |
| 55 | + { |
| 56 | + text: "Quick Compare", |
| 57 | + items: [ |
| 58 | + { text: "Getting started", link: "/guides/quickcompare" }, |
| 59 | + { text: "Resources", link: "/guides/quickcompare/resources" }, |
| 60 | + ], |
| 61 | + }, |
| 62 | + { |
| 63 | + text: "Installations", |
| 64 | + items: [ |
| 65 | + { text: "Desktop bundle", link: "/guides/installation/desktop" }, |
| 66 | + { text: "Conda package", link: "/guides/installation/conda" }, |
| 67 | + ], |
| 68 | + }, |
| 69 | + { |
| 70 | + text: "Development", |
| 71 | + items: [ |
| 72 | + { text: "Introduction", link: "/guides/dev" }, |
| 73 | + { text: "Setup", link: "/guides/dev/setup" }, |
| 74 | + { text: "Publish to NERSC", link: "/guides/dev/nersc" }, |
| 75 | + { text: "Continuous Integration", link: "/guides/dev/ci" }, |
| 76 | + ], |
| 77 | + }, |
| 78 | + ], |
| 79 | + }, |
| 80 | + |
| 81 | + socialLinks: [ |
| 82 | + { icon: "github", link: "https://github.com/Kitware/QuickView" }, |
| 83 | + ], |
| 84 | + }, |
| 85 | +}); |
0 commit comments