mirror of
https://github.com/sotrh/learn-wgpu.git
synced 2024-11-13 13:10:41 +00:00
31 lines
875 B
JavaScript
31 lines
875 B
JavaScript
module.exports = {
|
|
base: '/learn-wgpu/',
|
|
title: 'Learn Wgpu',
|
|
theme: 'thindark',
|
|
plugins: [['vuepress-plugin-code-copy', true]],
|
|
themeConfig: {
|
|
displayAllHeaders: false,
|
|
lastUpdated: 'Last Updated',
|
|
sidebar: [
|
|
'/',
|
|
{
|
|
title: 'Beginner',
|
|
collapsable: false,
|
|
children: [
|
|
'/beginner/',
|
|
'/beginner/tutorial1-window',
|
|
'/beginner/tutorial2-swapchain',
|
|
'/beginner/tutorial3-pipeline/',
|
|
'/beginner/tutorial4-buffer/',
|
|
],
|
|
},
|
|
{
|
|
title: 'Intermediate',
|
|
collapsable: false,
|
|
children: [
|
|
'/intermediate/windowless',
|
|
],
|
|
},
|
|
]
|
|
}
|
|
} |