Documentation Website Development on VitePress

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_website-b2b-advance_0.png
    B2B ADVANCE company website development
    1230
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1167
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    863
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1077
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    829
  • image_bitrix-bitrix-24-1c_fixper_448_0.png
    Website development for FIXPER company
    843

VitePress Documentation Site Development

VitePress is a static site generator on Vite + Vue 3, optimized for technical documentation. Faster than Docusaurus on build, natively supports Vue components in Markdown.

Initialization

npm init vitepress@latest
# Select: Default Theme, TypeScript
cd docs
npm install
npm run dev

.vitepress/config.ts

import { defineConfig } from 'vitepress';

export default defineConfig({
  title: 'My Project',
  description: 'Documentation for My Project',
  lang: 'ru-RU',

  themeConfig: {
    nav: [
      { text: 'Guide',     link: '/guide/introduction' },
      { text: 'API',       link: '/api/overview' },
      { text: 'Changelog', link: '/changelog' },
    ],

    sidebar: {
      '/guide/': [
        { text: 'Introduction', items: [
          { text: 'What is My Project?', link: '/guide/introduction' },
          { text: 'Getting Started',     link: '/guide/getting-started' },
          { text: 'Configuration',       link: '/guide/configuration' },
        ]},
        { text: 'Advanced', items: [
          { text: 'Plugins', link: '/guide/plugins' },
          { text: 'API',     link: '/guide/api' },
        ]},
      ],
    },

    search: {
      provider: 'algolia',
      options: {
        appId: 'APP_ID',
        apiKey: 'API_KEY',
        indexName: 'my-project',
      },
    },

    editLink: {
      pattern: 'https://github.com/my-org/my-project/edit/main/docs/:path',
      text: 'Edit this page',
    },

    socialLinks: [
      { icon: 'github', link: 'https://github.com/my-org/my-project' },
    ],
  },

  markdown: {
    theme: { light: 'github-light', dark: 'github-dark' },
    config(md) {
      md.use(require('markdown-it-container'), 'tip');
    },
  },
});

Vue Components in Markdown

# Component Demo

<script setup>
import { ref } from 'vue'
const count = ref(0)
</script>

<button @click="count++">Count: {{ count }}</button>

::: tip
This is a tip container.
:::

::: warning
This is a warning.
:::

::: code-group
```sh [npm]
npm install my-package
pnpm add my-package

:::


### Generating Sidebar from File Structure

```typescript
// .vitepress/utils/generateSidebar.ts
import fs from 'fs';
import path from 'path';

export function generateSidebar(dir: string) {
  const files = fs.readdirSync(dir);
  return files
    .filter(f => f.endsWith('.md') && f !== 'index.md')
    .map(f => ({
      text:  f.replace('.md', '').replace(/-/g, ' '),
      link: `/${path.relative('docs', path.join(dir, f)).replace('.md', '')}`,
    }));
}

VitePress documentation site development — 2–4 days.