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

11 lines (10 loc) 354 B
import { Tree } from '@nx/devkit'; import type { SupportedStyles } from '@nx/react'; interface Schema { path: string; name?: string; style: SupportedStyles; skipFormat?: boolean; } export declare function componentGenerator(host: Tree, options: Schema): Promise<import("@nx/devkit").GeneratorCallback>; export default componentGenerator;