mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-16 21:58:19 +00:00
fix(schema): only disallow vite server port and host (#7554)
This commit is contained in:
parent
4b4558c2be
commit
1f3d9a1e84
@ -1,6 +1,6 @@
|
||||
import type { KeepAliveProps, TransitionProps } from 'vue'
|
||||
import { ConfigSchema } from '../../schema/config'
|
||||
import type { UserConfig as ViteUserConfig } from 'vite'
|
||||
import type { ServerOptions as ViteServerOptions, UserConfig as ViteUserConfig } from 'vite'
|
||||
import type { Options as VuePluginOptions } from '@vitejs/plugin-vue'
|
||||
import type { MetaObject } from './meta'
|
||||
import type { Nuxt } from './nuxt'
|
||||
@ -53,7 +53,7 @@ export interface ViteConfig extends ViteUserConfig {
|
||||
/**
|
||||
* Use environment variables or top level `server` options to configure Nuxt server.
|
||||
*/
|
||||
server?: never
|
||||
server?: Omit<ViteServerOptions, 'port' | 'host'>
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user