inertia
inertia copied to clipboard
Inertia.js lets you quickly build modern single-page React, Vue and Svelte apps using classic server-side routing and controllers.
@reinink I have rebased all my commits in my repo (https://github.com/jamesst20/inertia) to include the latest changes and afterwards I have taken all my packages/svelte files there to overwrite the ones...
Currently when using SSR and the Inertia head component, the title is appended to the meta items. Taking an example from the docs: ```html Your page title ``` This would...
Currently the Inertia SSR server would only run on a single thread, so on high load this might have implications, since the Node process could only take 100% on a...
### Version: - `@inertiajs/react` version: 1.1.0 ### Describe the problem: Implementing lazy loading with Inertia::lazy in Laravel works well for asynchronous data fetching and improves Time To First Byte (TTFB)....
This PR adds a new `formDataArrayFormat` option to `Link` and `router.visit` that duplicates the logic of `queryStringArrayFormat`, but for formData arrays serialization. ### Rationale Currently, multipart form data arrays are...
I realized the project is being classified as php based, but I think it would be more acurate to say it is based on javascript? This is useful when people...
### Version: - `@inertiajs/svelte` version: 1.0.11 ### Describe the problem: Page component is not refreshed (destroyed and recreated) when navigating to the same page. Per documentation page component is supposed...
- Upgraded playground to Svelte 5 - Fixed SSR breaking changes - packages.json: Allow Svelte 5 installation - Improvements: Render CSS properly for Svelte 3 & 4 https://github.com/inertiajs/inertia/pull/1761 - Svelte...
This PR adds an option to preserve the current url. This is specially useful when there is an **infinite scroll pagination**. ## Before To the infinite scrolls using Inertia we...
There are situations where making a visit to the server to set a prop is kind of unnecessary. For example, maybe you have a `/users/create` endpoint that sets a `showCreateModal`...