Learning And Researching Software Quality Assurance (larsqa)
Learning And Researching Software Quality Assurance (larsqa)
Isn't ```js const router = createRouter(); const handler = router.handler.bind(handler); ``` wrong? Isn't it supposed to be ```js const router = createRouter(); const handler = router.handler.bind(router); ```
Agree with @hussamkhatib, the new approach introduces more friction. I'd like to use it as it was before.
> I don't understand that the first part of this comment is trying to say. And push is documented separately. If there is a note, it should just say that...
> --load is not default(why would you set it then). You might be thinking about Docker driver without --output. Ohhh alright! > Looking at https://github.com/docker/buildx/blob/e12827910c278b76b9bb1050e7157354db3b1f42/docs/reference/buildx_build.md#docker the multi-platform case is already...
Here's the minimal server.js which Next.js currently (12.2.2) outputs: ```js process.env.NODE_ENV = 'production' process.chdir(__dirname) const NextServer = require('next/dist/server/next-server').default const http = require('http') const path = require('path') // Make sure commands...
Several years later and still, no one of the maintainers care to explain why this behaviour exists?