Dagger
Search

nextjsBuild

The module is implemented as a struct NextjsBuild with a method Build that takes a source directory (source) as input, representing the root of the Next.js project. The resulting container is configured for serving the static site, with Nginx acting as the web server.

Installation

dagger install github.com/slumbering/daggerverse/nextjs-build@1f017e3d5f0846ed9e7a734476a1fd0dfd290c20

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()

Build initiates the construction process of a Next.js application within a containerized environment. This method takes a source directory (source) as input, representing the root of the Next.js project. The resulting container is configured for serving the static site, with Nginx acting as the web server.

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
Example
dagger -m github.com/slumbering/daggerverse/nextjs-build@1f017e3d5f0846ed9e7a734476a1fd0dfd290c20 call \
 build --source DIR_PATH
func (m *myModule) example(source *Directory) *Container  {
	return dag.
			NextjsBuild().
			Build(source)
}
@function
def example(source: dagger.Directory) -> dagger.Container:
	return (
		dag.nextjs_build()
		.build(source)
	)
@func()
example(source: Directory): Container {
	return dag
		.nextjsBuild()
		.build(source)
}