nuxt-community/composition-api
async functions require extra time with `nuxt generate`
Offen
#44 geöffnet am 08.05.2020
help wanted
Repository-Metriken
- Stars
- (702 Sterne)
- PR-Merge-Metriken
- (PR-Metriken ausstehend)
Beschreibung
🐛 The bug When generated files are produced, async functions or serverPrefetches don't correctly populate the Nuxt context.
Note: I believe this is an issue with Nuxt rather than with nuxt-composition-api.
🛠️ To reproduce Steps to reproduce the behavior:
- Clone this repo.
- Remove
interval: 2000fromtest/fixture/nuxt.config.js - Run
yarn nuxt generate -c test/fixture/nuxt.config.js - Inspect
./dist/ssr-ref/index.htmlto see not all ssrRefs injected in page
ℹ️ Workaround You can add time between pages being generated to allow for any async functions to resolve, if you are pre-generating any of your pages.
nuxt.config.js:
{
generate: {
// choose to suit your project
interval: 2000,
}
}