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',
|
2019-11-14 23:41:16 +00:00
|
|
|
plugins: {
|
|
|
|
'vuepress-plugin-code-copy': true,
|
|
|
|
'@vuepress/back-to-top': true,
|
|
|
|
'seo': {
|
|
|
|
},
|
|
|
|
},
|
2019-10-16 23:35:58 +00:00
|
|
|
themeConfig: {
|
2019-11-14 23:41:16 +00:00
|
|
|
author: {
|
|
|
|
name: 'Benjamin R Hansen',
|
|
|
|
twitter: 'https://twitter.com/sotrh760',
|
|
|
|
},
|
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: [
|
2019-11-26 22:46:46 +00:00
|
|
|
'/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-11-22 23:09:38 +00:00
|
|
|
'/beginner/tutorial6-uniforms/',
|
2019-12-31 00:04:38 +00:00
|
|
|
'/beginner/tutorial7-instancing/',
|
2020-01-14 19:02:41 +00:00
|
|
|
'/beginner/tutorial8-depth/',
|
2020-03-06 20:19:12 +00:00
|
|
|
'/beginner/tutorial9-models/',
|
2019-10-16 23:35:58 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Intermediate',
|
|
|
|
collapsable: false,
|
|
|
|
children: [
|
2020-03-12 22:57:09 +00:00
|
|
|
'/intermediate/tutorial10-lighting/',
|
2019-10-16 23:35:58 +00:00
|
|
|
],
|
|
|
|
},
|
2020-03-30 01:51:50 +00:00
|
|
|
{
|
|
|
|
title: 'Showcase',
|
|
|
|
collapsable: true,
|
|
|
|
children: [
|
|
|
|
'/showcase/',
|
|
|
|
'/showcase/windowless/',
|
|
|
|
'/showcase/gifs/',
|
|
|
|
]
|
|
|
|
},
|
2019-11-13 06:52:09 +00:00
|
|
|
'/news/'
|
2019-10-16 23:35:58 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|