Nuxt/packages/schema/src/config/generate.ts
2023-08-08 21:55:29 +01:00

29 lines
660 B
TypeScript

import { defineUntypedSchema } from 'untyped'
export default defineUntypedSchema({
generate: {
/**
* The routes to generate.
*
* If you are using the crawler, this will be only the starting point for route generation.
* This is often necessary when using dynamic routes.
*
* It is preferred to use `nitro.prerender.routes`.
*
* @example
* ```js
* routes: ['/users/1', '/users/2', '/users/3']
* ```
* @type {string | string[]}
*/
routes: [],
/**
* This option is no longer used. Instead, use `nitro.prerender.ignore`.
*
* @deprecated
*/
exclude: []
}
})