mirror of
https://github.com/sotrh/learn-wgpu.git
synced 2024-11-10 01:10:28 +00:00
42 lines
1.1 KiB
JavaScript
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/'
|
|
]
|
|
}
|
|
} |