Brandon Shar
Brandon Shar
I’m a little confused, didn’t you say in #14 that you would accept a PR with this functionality? > if we start to implement every specificity for each frontend framework...
I'm happy to make changes, but I'm genuinely not sure what you're looking for. Both methods I added already have doc-blocks and there isn't much to configure. I added a...
If you're up and running with both React and Vue then you've gone further than me 😄 I'd like to get some front end documentation up soon, but I don't...
Thanks @l-kotzur that's a a great solution! I used the following strategy for mine: ```js const csrfToken = document.querySelector('meta[name=csrf-token]').content; axios.defaults.headers.common['X-CSRFToken'] = csrfToken; ``` but I like yours more! I'll leave...
I didn't realize it when I left that comment, but now I know that your solution is much better than mine! I created an inertia based login for for an...
That's a good question! Internally we've definitely made the switch to Vite and are recommending it going further, but we actually weren't sure if the installers were getting good use...
Thanks @mujahidfa ! That's great. I'll leave this open for now as I figure out how best to add it to the docs (maybe just under a new examples section).
Hey @akashKarmakar02 can you describe a bit more about your setup and what you tried? I don't know of any bugs in the existing SSR implementation, but I haven't used...
Thanks @davidschrooten , this is great! I'd like to add some sort of React/Vue documentation as well if we're adding Svelte.. maybe something like a small sample folder of markdown...
Hmm.. I'm not sure we could enable both naming patterns without some heavy handed checks at runtime. Maybe we could enable this via a setting? Would that solve the issue...