12345678910111213141516171819202122232425 |
- import { defineConfig } from 'vitepress'
- export default defineConfig({
- title: 'TresJS',
- description: 'Autogenerated wrappers based on THREE instances',
- head: [['link', { rel: 'icon', type: 'image/svg', href: '/favicon.svg' }]],
- themeConfig: {
- logo: '/logo.svg',
- sidebar: [
- {
- text: 'Guide',
- items: [
- // This shows `/guide/index.md` page.
- { text: 'Introduction', link: '/guide/' },
- { text: 'Getting Started', link: '/guide/getting-started' },
- { text: 'Your first Scene', link: '/guide/your-first-scene' },
- ],
- },
- ],
- socialLinks: [
- { icon: 'github', link: 'https://github.com/alvarosabu/tres' },
- { icon: 'twitter', link: 'https://twitter.com/alvarosabu' },
- ],
- },
- })
|