@practica/create-node-app
Version:
Create Node.js app that is packed with best practices AND strive for simplicity
16 lines (14 loc) • 330 B
text/typescript
export const OpenAPIOptions = {
openapi: {
info: {
title: 'Order service',
description: 'The order service API ',
version: '0.8.0',
},
tags: [{ name: 'v0.8', description: 'Current version in production' }],
},
};
export const OpenAPIUIOptions = {
routePrefix: '/docs',
exposeRoute: true,
};