We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37d124c commit ea7925cCopy full SHA for ea7925c
src/index.ts
@@ -348,7 +348,10 @@ function noExternalInertiaHelpers(config: UserConfig): true|Array<string|RegExp>
348
/* eslint-disable-next-line @typescript-eslint/ban-ts-comment */
349
/* @ts-ignore */
350
const userNoExternal = (config.ssr as SSROptions|undefined)?.noExternal
351
- const pluginNoExternal = ['laravel-vite-plugin/inertia-helpers']
+ const pluginNoExternal = [
352
+ 'laravel-vite-plugin/inertia-helpers',
353
+ '@inertiajs/server'
354
+ ]
355
356
if (userNoExternal === true) {
357
return true
0 commit comments