About 320 results
Open links in new tab
  1. Inertia.js - The Modern Monolith

    Inertia.js lets you quickly build modern single-page React, Vue and Svelte apps using classic server-side routing and controllers.

  2. How It Works - Inertia.js Documentation

    With Inertia you build applications just like you’ve always done with your server-side web framework of choice. You use your framework’s existing functionality for routing, controllers, …

  3. Routing - Inertia.js Documentation

    If you have a page that doesn’t need a corresponding controller method, like an “FAQ” or “about” page, you can route directly to a component via the Route::inertia() method.

  4. Server-side setup - Inertia.js

    These starter kits are the absolute fastest way to start building a new Inertia project using Laravel and Vue or React. However, if you would like to manually install Inertia into your application, …

  5. Server-Side Setup - Inertia.js Documentation

    These starter kits are the absolute fastest way to start building a new Inertia project using Laravel and Vue or React. However, if you would like to manually install Inertia into your application, …

  6. Pages - Inertia.js Documentation

    When building applications using Inertia, each page in your application typically has its own controller / route and a corresponding JavaScript component. This allows you to retrieve just …

  7. Client-Side Setup - Inertia.js Documentation

    These starter kits are the absolute fastest way to start building a new Inertia project using Laravel and Vue or React. However, if you would like to manually install Inertia into your application, …

  8. Manual visits - Inertia.js

    When navigating between pages, Inertia mimics default browser behaviour by automatically resetting the scroll position of the document body (as well as any scroll regions you've …

  9. The Protocol - Inertia.js Documentation

    This header indicates that the request is being made by Inertia and isn’t a standard full-page visit. When the server detects the X-Inertia header, instead of responding with a full HTML …

  10. Server-Side Rendering (SSR) - Inertia.js Documentation

    To run the SSR server on Forge, you should create a new daemon that runs php artisan inertia:start-ssr from the root of your app. Or, you may utilize the built-in Inertia integration …