+server

import type { BuildOptions } from 'esbuild'
type Server =
| string
| {
entry: string | { index: string; [name: string]: string }
standalone?: boolean | { esbuild: BuildOptions }
hmr?: boolean | 'prefer-restart'
}
The documentation for the various +server
settings lives at vike-server
.