UNPKG

@nx/next

Version:

The Next.js plugin for Nx contains executors and generators for managing Next.js applications and libraries within an Nx workspace. It provides: - Scaffolding for creating, building, serving, linting, and testing Next.js applications. - Integration wit

6 lines (5 loc) 356 B
import { type GeneratorCallback, type Tree } from '@nx/devkit'; import type { InitSchema } from './schema'; export declare function nextInitGenerator(tree: Tree, schema: InitSchema): Promise<GeneratorCallback>; export declare function nextInitGeneratorInternal(host: Tree, schema: InitSchema): Promise<GeneratorCallback>; export default nextInitGenerator;