Replies: 2 comments 3 replies
-
Where did you see these errors? Those are Next.js internals which change when you deploy the application. I see that in the currently deployed site all of these load normally. Are you seeing this in a logs aggregate? Or perhaps you've fixed the problem? I don't see it anymore. |
Beta Was this translation helpful? Give feedback.
-
We can see it current live website. Only this 3 pages. If we use VPN it's works but from Hong Kong and Mongolia now working. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm running a Next.js on Netlify. We getting 404 for only three pages
GET https://www.gobicashmere.com/de/_next/static/WDyb0rywF_Q6VtUs9PF-F/_buildManifest.js net::ERR_ABORTED 404
GET https://www.gobicashmere.com/de/_next/static/WDyb0rywF_Q6VtUs9PF-F/_ssgManifest.js net::ERR_ABORTED 404
GET https://www.gobicashmere.com/de/_next/static/WDyb0rywF_Q6VtUs9PF-F/_middlewareManifest.js net::ERR_ABORTED 404
GET https://www.gobicashmere.com/de/_next/static/chunks/webpack-63fd9fe6fcb88c16.js net::ERR_ABORTED 404
GET https://www.gobicashmere.com/de/_next/static/chunks/pages/collections/%5Bhandle%5D-744491e2cd7955f8.js net::ERR_ABORTED 404
Our next jS config is
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: [
'storage.googleapis.com',
'chart.googleapis.com',
'cdn.shopify.com',
],
formats: ['image/avif', 'image/webp'],
minimumCacheTTL: 720,
deviceSizes: [640, 750, 828, 1080, 1440, 1920, 2048, 3840],
},
}
module.exports = nextConfig
Does anyone know what I can do to fix this?
Beta Was this translation helpful? Give feedback.
All reactions