crashed app in navigator second request
See original GitHub issueEnvironment
- Operating System:
Linux
- Node Version:
v18.7.0
- Nuxt Version:
3.0.0-rc.12
- Nitro Version:
0.6.0
- Package Manager:
npm@8.15.0
- Builder:
vite
- User Config:
srcDir
,modules
,compilerOptions
,vue
,vite
,telemetry
,algolia
,head
,auth
,css
,build
,runtimeConfig
- Runtime Modules:
genesis-design-system/nuxt
,@nuxtjs/tailwindcss@5.3.5
,@nuxtjs/algolia@1.1.4
,@nuxtjs-alt/auth@2.0.20
,@nuxtjs/device@3.0.0
,unplugin-icons/nuxt
,@pinia/nuxt@0.4.3
,@nuxtjs/i18n@8.0.0-alpha.3
- Build Modules:
-
Reproduction
For some time here, when we start the server, the first request we make through the browser works fine. If we browse the web through the links everything works fine. However, if we reload the same url twice through f5 or through the address bar, the web becomes saturated, and it presents the aspect that I show you.
It seems that everything has to do with those javascript resources that are waiting to be loaded.
Any ideas?
Describe the bug
For some time here, when we start the server, the first request we make through the browser works fine. If we browse the web through the links everything works fine. However, if we reload the same url twice through f5 or through the address bar, the web becomes saturated, and it presents the aspect that I show you.
It seems that everything has to do with those javascript resources that are waiting to be loaded.
Any ideas?
Additional context
No response
Logs
No response
Issue Analytics
- State:
- Created a year ago
- Comments:8 (2 by maintainers)
Top GitHub Comments
WORKSS!!! Thanks!!!
nuxt.config.ts
vite: { optimizeDeps: { include: [ ‘lodash-es’ ], } },
Would you try adding
lodash-es
tovite.optimizeDeps.include
?