We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add
import { defineConfig } from "vitepress"; // https://vitepress.dev/reference/site-config export default defineConfig({ title: "ASG", description: "Automatic real-time story file generation from React, Vue, Angular and Lit component files", head: [ /* ["link", { rel: "icon", type: "image/svg+xml", href: "/asg-light.svg" }], */ ["link", { rel: "icon", type: "image/png", href: "/asg-light.png" }], ["meta", { name: "theme-color", content: "#ff4785" }], ["meta", { property: "og:type", content: "website" }], ["meta", { property: "og:locale", content: "en" }], [ "meta", { property: "og:title", content: "ASG | Automatic real-time story file generation from React, Vue, Angular and Lit component files", }, ], ["meta", { property: "og:site_name", content: "ASG" }], [ "meta", { property: "og:image", content: "https://auto-story-generator.takumaru.dev/asg-thumbnail-radius.png", }, ], [ "meta", { property: "og:url", content: "https://auto-story-generator.takumaru.dev/", }, ], ], themeConfig: { logo: { dark: "/asg-dark.png", light: "/asg-light.png", }, search: { provider: "local", }, // https://vitepress.dev/reference/default-theme-config nav: [ { text: "Home", link: "/" }, { text: "Getting Started", link: "/introduction/getting-started" }, { text: "FAQ", link: "/faq" }, ], sidebar: [ { text: "Introduction", items: [ { text: "What is This?", link: "/introduction/what" }, { text: "Getting Started", link: "/introduction/getting-started" }, { text: "Options", link: "/introduction/options" }, ], }, { text: "Generate Preset", items: [ { text: "React", link: "/useCase/react" }, { text: "Lit", link: "/useCase/lit" }, { text: "Vue", link: "/useCase/vue" }, { text: "Svelte", link: "/useCase/svelte" }, { text: "Angular", link: "/useCase/angular" }, { text: "Custom", link: "/useCase/custom" }, ], }, { text: "FAQ", link: "/faq", }, { text: "Error Codes", link: "/errors", }, { text: "Developer README", // <- THIS!!!!! items: [ { text: "Lifecycle", link: "/developer/lifecycle" }, { text: "APIs", link: "/developer/api" }, { text: "How to Create New Preset", link: "/developer/create-new-preset" }, ], } ], socialLinks: [ { icon: "github", link: "https://github.com/takuma-ru/auto-story-generator", }, { icon: "npm", link: "https://www.npmjs.com/package/@takuma-ru/auto-story-generator", }, ], }, });
No response
The text was updated successfully, but these errors were encountered:
takuma-ru
No branches or pull requests
Issue type
Add
Description
Additional context
No response
The text was updated successfully, but these errors were encountered: