You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
learn-wgpu/docs/.vuepress/config.js

58 lines
1.8 KiB
JavaScript

module.exports = {
base: '/learn-wgpu/',
title: 'Learn Wgpu',
theme: 'thindark',
plugins: {
'vuepress-plugin-code-copy': true,
'@vuepress/back-to-top': true,
'seo': {
},
},
themeConfig: {
author: {
name: 'Benjamin R Hansen',
twitter: 'https://twitter.com/sotrh760',
},
displayAllHeaders: false,
lastUpdated: 'Last Updated',
sidebar: [
'/',
{
title: 'Beginner',
collapsable: false,
children: [
'/beginner/tutorial1-window/',
'/beginner/tutorial2-swapchain/',
'/beginner/tutorial3-pipeline/',
'/beginner/tutorial4-buffer/',
'/beginner/tutorial5-textures/',
'/beginner/tutorial6-uniforms/',
'/beginner/tutorial7-instancing/',
'/beginner/tutorial8-depth/',
'/beginner/tutorial9-models/',
],
},
{
title: 'Intermediate',
collapsable: false,
children: [
'/intermediate/tutorial10-lighting/',
'/intermediate/tutorial11-normals/',
'/intermediate/tutorial12-camera/',
'/intermediate/tutorial13-threading/',
],
},
{
title: 'Showcase',
collapsable: true,
children: [
'/showcase/',
'/showcase/windowless/',
'/showcase/gifs/',
'/showcase/pong/',
]
},
'/news/'
]
}
}