1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| /**
| * NuxtOptionsServer
| * Documentation: https://nuxtjs.org/api/configuration-server
| */
|
| export interface NuxtOptionsServer {
| host?: string
| https?: {
| cert?: string | Buffer
| key?: string | Buffer
| }
| port?: number | string
| socket?: string
| timing?: boolean | { total?: boolean }
| }
|
|