mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 13:45:18 +00:00
refactor(nuxt): use pathe.join
for layer lookup (#9540)
This commit is contained in:
parent
57d1b6d907
commit
d0c0cd7ad2
@ -60,7 +60,10 @@ export async function resolveApp (nuxt: Nuxt, app: NuxtApp) {
|
||||
// Resolve main (app.vue)
|
||||
if (!app.mainComponent) {
|
||||
app.mainComponent = await findPath(
|
||||
nuxt.options._layers.flatMap(layer => [`${layer.config.srcDir}/App`, `${layer.config.srcDir}/app`])
|
||||
nuxt.options._layers.flatMap(layer => [
|
||||
join(layer.config.srcDir, 'App'),
|
||||
join(layer.config.srcDir, 'app')
|
||||
])
|
||||
)
|
||||
}
|
||||
if (!app.mainComponent) {
|
||||
|
Loading…
Reference in New Issue
Block a user