mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 13:45:18 +00:00
fix(nuxt): add pages in correct hook when generating (#22088)
This commit is contained in:
parent
dcef9d94cd
commit
e9dac76348
@ -205,7 +205,6 @@ export default defineNuxtModule({
|
||||
if (nuxt.options.dev || !nitro.options.static) { return }
|
||||
// Prerender all non-dynamic page routes when generating app
|
||||
const prerenderRoutes = new Set<string>()
|
||||
nuxt.hook('modules:done', () => {
|
||||
nuxt.hook('pages:extend', (pages) => {
|
||||
prerenderRoutes.clear()
|
||||
const processPages = (pages: NuxtPage[], currentPath = '/') => {
|
||||
@ -221,7 +220,6 @@ export default defineNuxtModule({
|
||||
}
|
||||
processPages(pages)
|
||||
})
|
||||
})
|
||||
nuxt.hook('nitro:build:before', (nitro) => {
|
||||
for (const route of nitro.options.prerender.routes || []) {
|
||||
// Skip default route value as we only generate it if it is already
|
||||
|
Loading…
Reference in New Issue
Block a user