2022-08-26 15:47:29 +00:00
|
|
|
import { defineUntypedSchema } from 'untyped'
|
2021-03-28 20:14:04 +00:00
|
|
|
|
2022-08-26 15:47:29 +00:00
|
|
|
export default defineUntypedSchema({
|
2022-10-27 10:36:37 +00:00
|
|
|
router: {
|
|
|
|
/**
|
|
|
|
* Additional options passed to `vue-router`.
|
|
|
|
*
|
|
|
|
* Note: Only JSON serializable options should be passed by nuxt config.
|
|
|
|
*
|
|
|
|
* For more control, you can use `app/router.options.ts` file.
|
|
|
|
* @see [documentation](https://router.vuejs.org/api/interfaces/routeroptions.html).
|
2023-06-08 21:50:29 +00:00
|
|
|
* @type {typeof import('../src/types/router').RouterConfigSerializable}
|
2022-10-27 10:36:37 +00:00
|
|
|
*/
|
|
|
|
options: {}
|
|
|
|
}
|
2022-08-26 15:47:29 +00:00
|
|
|
})
|