NuxtN
Nuxtβ€’12mo agoβ€’
14 replies
Tackleberry

net::ERR_CONTENT_LENGTH_MISMATCH 200

With no changes to my code and running the latest Node 22 (v22.14), my application is suddenly not served properly anymore. When running the
npm run dev
command, everything boots up normally according to the console. However, when navigating to the site, I only get a blank page. Opening the dev tools reveals a bunch of errors like this:

GET http://127.0.0.1:3000/_nuxt/@fs/D:/<snip>/node_modules/tailwindcss/tailwind.css net::ERR_CONTENT_LENGTH_MISMATCH 200 (OK)
play:1         
           GET http://127.0.0.1:3000/_nuxt/@fs/D:/<snip>/node_modules/vue3-snackbar/dist/vue3-snackbar.css net::ERR_CONTENT_LENGTH_MISMATCH 200 (OK)
play:1        
           GET http://127.0.0.1:3000/_nuxt/D:/<snip>/node_modules/vue3-snackbar/dist/vue3-snackbar.css net::ERR_CONTENT_LENGTH_MISMATCH 200 (OK)
play:1         
           GET http://127.0.0.1:3000/_nuxt/D:/<snip>/node_modules/nuxt/dist/app/entry.js net::ERR_CONTENT_LENGTH_MISMATCH 200 (OK)
play:1     
           GET http://127.0.0.1:3000/_nuxt/D:/<snip>/node_modules/tailwindcss/tailwind.css net::ERR_CONTENT_LENGTH_MISMATCH 200 (OK)
play:1   
           GET http://127.0.0.1:3000/_nuxt/@vite/client net::ERR_CONTENT_LENGTH_MISMATCH 200 (OK)
favicon.ico:1 
           GET http://127.0.0.1:3000/favicon.ico net::ERR_CONTENT_LENGTH_MISMATCH 200 (OK)


I have upgraded nuxt to the latest version, but no change. I tried running dev with --host, but both localhost and 127.0.0.1 return the same error. Does anyone have any experience with this error?
Was this page helpful?