v2.0.0
- Add support for scroll props
v0.4.0
- Add new required option -
:endpointtoCombo.Inertia.SSR. It is for starting multiple SSR supervisors - Change cookie name from
XSRF-TOKENtoCSRF-TOKEN, and you should configure Axios like:
import axios from "axios"
axios.defaults.xsrfCookieName = "CSRF-TOKEN"
axios.defaults.xsrfHeaderName = "X-CSRF-TOKEN"v0.3.0
Make it work with combo v0.5.0.
v0.2.0
remove :prefix and :suffix attr from <Inertia.HTML.inertia_title> component
It's easy to add prefix and suffix into inner_block, like:
<.inertia_title>
{assigns[:page_title] || "Home"} ยท MyApp
</.inertia_title>Hence, these two attrs seems to unnecessary.
change the fallback version as "not-detected"
Previously, it was "1", which wasn't descriptive.