Skip to content

Instantly share code, notes, and snippets.

@lepikhinb
Created January 24, 2023 10:44
Show Gist options
  • Save lepikhinb/d21c913a7e5bc4f1cf21f2cf6d30d143 to your computer and use it in GitHub Desktop.
Save lepikhinb/d21c913a7e5bc4f1cf21f2cf6d30d143 to your computer and use it in GitHub Desktop.
inertia reload plugin
import { createApp, h, DefineComponent } from "vue"
import { createInertiaApp, router } from "@inertiajs/vue3"
import { resolvePageComponent } from "laravel-vite-plugin/inertia-helpers"
if (import.meta.hot) {
import.meta.hot.on("inertia:reload", () => {
router.reload()
})
}
createInertiaApp({
resolve: (name: string) =>
resolvePageComponent(
`../views/pages/${name}.vue`,
import.meta.glob("../views/pages/**/*.vue")
),
setup({ el, App, props, plugin }) {
createApp({ render: () => h(App, props) })
.use(plugin)
.mount(el)
},
})
import { Plugin } from "vite"
export const reloadPlugin = (): Plugin => {
return {
name: "inertia-reload",
configureServer({ watcher, ws }) {
watcher.on("change", async (file) => {
if (!file.endsWith("Controller.php")) {
return
}
ws.send({
type: "custom",
event: "inertia:reload",
})
})
},
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment