mirror of
https://github.com/anatolykopyl/vue-three-d-mockup.git
synced 2026-03-26 21:05:10 +00:00
16 lines
413 B
JavaScript
16 lines
413 B
JavaScript
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.',
|
|
}
|
|
}
|
|
})
|