UNPKG

@nx/nuxt

Version:

The Nuxt plugin for Nx contains executors and generators for managing Nuxt applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Vitest, Playwright, Cypress, and Storybook. - Generators for applications, l

12 lines (11 loc) 432 B
import { CreateNodes, CreateNodesV2 } from '@nx/devkit'; export interface NuxtPluginOptions { buildTargetName?: string; serveTargetName?: string; serveStaticTargetName?: string; buildStaticTargetName?: string; buildDepsTargetName?: string; watchDepsTargetName?: string; } export declare const createNodesV2: CreateNodesV2<NuxtPluginOptions>; export declare const createNodes: CreateNodes<NuxtPluginOptions>;