@aziontech/opennextjs-azion
Version:
Azion builder for Next.js apps
13 lines (12 loc) • 516 B
JavaScript
/**
* This code was originally copied and modified from the @opennextjs/cloudflare repository.
* Significant changes have been made to adapt it for use with Azion.
*/
import { commandBuildBundler } from "../../core/utils/run-bundler.js";
export async function deploy(options, _config, deployOptions) {
// Run the build command
await commandBuildBundler(options, deployOptions.skipNextBuild, deployOptions.passthroughArgs, {
logging: "all",
version: deployOptions.bundlerVersion,
});
}