I've created a webpage with nextjs and use next export to create an static page of it.
I wonder why there are files with huge filesize in the output-directory (see:
)
The page is pretty fast if I upload it to the server and run it in the browser. It seems that at least - even if the files _app.js and _index.jsexist in this directory - they are not used by the live-page.
But I wonder why are they so huge, and why they are in the output directory if not needed for production?
--
I'd analysed the bundle with "Webpack Bundle Analyzer" and still don't see, what the cause of such a huge filesize:

--
I've created a tiny project from github and also run next build and next export, there is no _app.js, or _error.js at all in the output directory, but only the ones with the random-string in filename!
So might this depend on a miss configuration of my Environment?