21 lines
359 B
TypeScript
21 lines
359 B
TypeScript
import { defineConfig } from '@adonisjs/inertia'
|
|
|
|
const inertiaConfig = defineConfig({
|
|
/**
|
|
* Server-side rendering options.
|
|
*/
|
|
ssr: {
|
|
/**
|
|
* Toggle SSR mode for Inertia pages.
|
|
*/
|
|
enabled: false,
|
|
|
|
/**
|
|
* Entry file used by the SSR server build.
|
|
*/
|
|
entrypoint: 'inertia/ssr.ts',
|
|
},
|
|
})
|
|
|
|
export default inertiaConfig
|