Added vitepress docs

This commit is contained in:
2022-07-24 14:42:10 +03:00
parent 91f80c342f
commit 2b8e9f6a98
9 changed files with 570 additions and 60 deletions

15
docs/.vitepress/config.js Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from 'vitepress'
export default defineConfig({
title: 'Vue 3D Mockup',
description: '📱 A 3D phone mockup component to showcase your apps',
themeConfig: {
nav: [
{ text: 'Guide', link: '/guide' },
{ text: 'Github', link: 'https://github.com/anatolykopyl/vue-three-d-mockup' }
],
footer: {
message: 'Released under the GPL-3.0 license.',
}
}
})