Normally, Vue DevTools work on my Vite projects, but I'm struggling with inertia. I've added NODE_ENV=development
to .env
and vueApp.config.devtools = true
to:
createInertiaApp({
title: (title) => title ? `${title} - ${appName}` : appName,
resolve: (name) => resolvePageComponent(
`./Pages/${name}.vue`,
import.meta.glob<DefineComponent>('./Pages/**/*.vue'),
),
setup({ el, App, props, plugin }) {
const vueApp = createApp({ render: () => h(App, props) })
.use(plugin)
.use(i18n)
.mount(el)
vueApp.config.devtools = true
},
})
but it doesn't help, Vue DevTools tab doesn't appear in my browser's dev tools.