strapi/packages/plugins/documentation/server/config/default-plugin-config.js

37 lines
787 B
JavaScript
Raw Normal View History

2021-08-19 16:49:33 +02:00
'use strict';
module.exports = {
openapi: '3.0.0',
info: {
version: '1.0.0',
title: 'DOCUMENTATION',
description: '',
termsOfService: 'YOUR_TERMS_OF_SERVICE_URL',
contact: {
name: 'TEAM',
email: 'contact-email@something.io',
url: 'mywebsite.io',
},
license: {
name: 'Apache 2.0',
url: 'https://www.apache.org/licenses/LICENSE-2.0.html',
},
'x-strapi-generation-date': new Date().toISOString(),
2021-08-19 16:49:33 +02:00
},
'x-strapi-config': {
path: '/documentation',
plugins: null,
2023-03-20 15:49:30 +01:00
customizer: null,
2021-08-19 16:49:33 +02:00
},
servers: [],
2021-08-19 16:49:33 +02:00
externalDocs: {
description: 'Find out more',
url: 'https://docs.strapi.io/developer-docs/latest/getting-started/introduction.html',
2021-08-19 16:49:33 +02:00
},
security: [
{
bearerAuth: [],
},
],
};