UNPKG

@moonee/nx-next12-plugin

Version:

Nx plugin for Next.js 12 integration

10 lines (9 loc) 324 B
import type { Configuration as WebpackConfig } from 'webpack'; interface NextConfig { webpack?: (config: WebpackConfig, options: any) => WebpackConfig; [key: string]: any; } export default function withNx(nextConfig?: NextConfig): { webpack: (config: WebpackConfig, options: any) => WebpackConfig; }; export {};