Dagger
Search

nextjsBuild

No long description provided.

Installation

dagger install github.com/slumbering/daggerverse/nextjs-build@33a1032ea4ecc0ccc5a75b44a4fb5e2478e4deff

Entrypoint

Return Type
NextjsBuild
Example
func (m *myModule) example() *NextjsBuild  {
	return dag.
			NextjsBuild()
}
@function
def example() -> dag.NextjsBuild:
	return (
		dag.nextjs_build()
	)
@func()
example(): NextjsBuild {
	return dag
		.nextjsBuild()
}

Types

NextjsBuild 🔗

build() 🔗

Use a directory to build a NextJS app.

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
Example
Function NextjsBuild.build is not accessible from the nextjsBuild module
func (m *myModule) example(source )   {
	return dag.
			NextjsBuild().
			Build(source)
}
@function
def example(source: ) -> :
	return (
		dag.nextjs_build()
		.build(source)
	)
@func()
example(source: ):  {
	return dag
		.nextjsBuild()
		.build(source)
}