mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-01 08:10:31 +00:00
657719f689
Co-authored-by: Pooya Parsa <pooya@pi0.io>
35 lines
781 B
TypeScript
35 lines
781 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/introduction/routing
|
|
*
|
|
* **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/introduction/routing
|
|
*
|
|
* @type {typeof import('nitropack')['NitroDevEventHandler'][]}
|
|
* @version 3
|
|
*/
|
|
devServerHandlers: []
|
|
}
|