mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-08 01:42:38 +00:00
e55938fe6e
Co-authored-by: Damian Głowala <48835293+DamianGlowala@users.noreply.github.com>
35 lines
765 B
TypeScript
35 lines
765 B
TypeScript
export default {
|
|
/**
|
|
* Configuration for Nitro.
|
|
*
|
|
* @see https://nitro.unjs.io/config/
|
|
*
|
|
* @type {typeof import('nitropack')['NitroConfig']}
|
|
* @version 2
|
|
* @version 3
|
|
*/
|
|
nitro: {},
|
|
|
|
/**
|
|
* Nitro server handlers.
|
|
*
|
|
* @see https://nitro.unjs.io/guide/routing.html
|
|
*
|
|
* **Note:** Files from `server/api`, `server/middleware` and `server/routes` will be automatically registred by Nuxt.
|
|
*
|
|
* @type {typeof import('nitropack')['NitroEventHandler'][]}
|
|
* @version 3
|
|
*/
|
|
serverHandlers: [],
|
|
|
|
/**
|
|
* Nitro development-only server handlers.
|
|
*
|
|
* @see https://nitro.unjs.io/guide/routing.html
|
|
*
|
|
* @type {typeof import('nitropack')['NitroDevEventHandler'][]}
|
|
* @version 3
|
|
*/
|
|
devServerHandlers: []
|
|
}
|