nuxt-users
Version:
A comprehensive user management module for Nuxt 3 and Nuxt 4 applications with authentication, authorization, database support, and CLI tools
10 lines (9 loc) • 435 B
TypeScript
/**
* Early authentication initialization plugin
*
* This plugin runs early (name starts with '0') to ensure authentication state
* is initialized from cookies before middleware runs. This prevents redirects
* to login page when opening new tabs with valid session cookies.
*/
declare const _default: import("#app").Plugin<Record<string, unknown>> & import("#app").ObjectPlugin<Record<string, unknown>>;
export default _default;