learn-wgpu/docs/.vuepress/config.js
2019-11-22 16:09:38 -07:00

42 lines
1.1 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/',
],
},
{
title: 'Intermediate',
collapsable: false,
children: [
'/intermediate/windowless/',
],
},
'/news/'
]
}
}