UNPKG

nuxt-i18n-micro

Version:

Nuxt I18n Micro is a lightweight, high-performance internationalization module for Nuxt, designed to handle multi-language support with minimal overhead, fast build times, and efficient runtime performance.

8 lines (7 loc) 323 B
/** * Checks if a path should be excluded from i18n routing * @param path - The path to check * @param excludePatterns - Optional custom exclusion patterns * @returns true if the path should be excluded */ export declare const isInternalPath: (path: string, excludePatterns?: (string | RegExp | object)[]) => boolean;