UNPKG

@izzyjs/route

Version:

Use your AdonisJs routes in your Inertia.js application

11 lines (10 loc) 340 B
export default class IzzyRouteMiddleware { handle({ request }, next) { const { pathname } = new URL(request.completeUrl()); // Update current route and preserve existing config if (globalThis.__izzy_route__) { globalThis.__izzy_route__['current'] = pathname; } return next(); } }