I'm trying to create a Vuepress next site and running into a roadblock.
I can only specify a path to the local theme (<repo>/.vuepress/theme) by using an absolute path... this poses a problem because the path to the theme is different on my machine than another developer's.
Why doesn't this work in .vuepress/config.js?
module.exports = {
theme: '.vuepress/theme',
}
or
module.exports = {
theme: './theme',
}