mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 00:23:53 +00:00
chore: handle app.vue fallback
This commit is contained in:
parent
5b2f0fa191
commit
ca8d465073
@ -30,8 +30,7 @@ export async function createApp (builder: Builder, options: Partial<NuxtApp> = {
|
||||
// Resolve app.main
|
||||
if (!app.main) {
|
||||
app.main = nuxt.resolver.tryResolvePath('~/App') ||
|
||||
nuxt.resolver.tryResolvePath('~/app') ||
|
||||
resolve(nuxt.options.appDir, 'app.vue')
|
||||
nuxt.resolver.tryResolvePath('~/app')
|
||||
}
|
||||
|
||||
// Resolve pages/
|
||||
@ -39,5 +38,12 @@ export async function createApp (builder: Builder, options: Partial<NuxtApp> = {
|
||||
app.routes.push(...await resolvePagesRoutes(builder, app))
|
||||
}
|
||||
|
||||
// Fallback app.main
|
||||
if (!app.main && app.routes.length) {
|
||||
app.main = resolve(nuxt.options.appDir, 'app.pages.vue')
|
||||
} else if (!app.main) {
|
||||
app.main = resolve(nuxt.options.appDir, 'app.tutorial.vue')
|
||||
}
|
||||
|
||||
return app
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user