/** * https://github.com/vercel/next.js/discussions/59127 * https://nextjs.org/docs/pages/api-reference/next-config-js/output * Next standalone will that copies only the necessary files for a production deployment including select files in node_modules. * For `Dockerfile`, it will lose `hyper-env` command, we will also do a staticlly ananlysis all dependencies of `hyper-env` and manually copy them to the `node_modules` folder. */ declare const nextStandalone: (args: string[]) => Promise; export { nextStandalone };