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

12 lines (10 loc) 217 B
import { SupportedStyles } from '@nx/react'; export interface Schema { path: string; name?: string; style: SupportedStyles; fileName?: string; withTests?: boolean; js?: boolean; skipFormat?: boolean; }