2019-10-16 23:35:58 +00:00
|
|
|
module.exports = {
|
2019-10-19 21:17:15 +00:00
|
|
|
base: '/learn-wgpu/',
|
2019-10-22 00:12:28 +00:00
|
|
|
title: 'Learn Wgpu',
|
2019-10-22 00:29:38 +00:00
|
|
|
theme: 'thindark',
|
|
|
|
plugins: [['vuepress-plugin-code-copy', true]],
|
2019-10-16 23:35:58 +00:00
|
|
|
themeConfig: {
|
2019-10-19 21:17:15 +00:00
|
|
|
displayAllHeaders: false,
|
|
|
|
lastUpdated: 'Last Updated',
|
2019-10-16 23:35:58 +00:00
|
|
|
sidebar: [
|
|
|
|
'/',
|
|
|
|
{
|
|
|
|
title: 'Beginner',
|
|
|
|
collapsable: false,
|
|
|
|
children: [
|
|
|
|
'/beginner/tutorial1-window',
|
2019-11-13 06:52:09 +00:00
|
|
|
'/beginner/tutorial2-swapchain/',
|
2019-10-25 07:57:14 +00:00
|
|
|
'/beginner/tutorial3-pipeline/',
|
|
|
|
'/beginner/tutorial4-buffer/',
|
2019-11-05 08:02:41 +00:00
|
|
|
'/beginner/tutorial5-textures/',
|
2019-10-16 23:35:58 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Intermediate',
|
|
|
|
collapsable: false,
|
|
|
|
children: [
|
2019-11-13 06:52:09 +00:00
|
|
|
'/intermediate/windowless/',
|
2019-10-16 23:35:58 +00:00
|
|
|
],
|
|
|
|
},
|
2019-11-13 06:52:09 +00:00
|
|
|
'/news/'
|
2019-10-16 23:35:58 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|