mirror of
https://github.com/strapi/strapi.git
synced 2025-07-15 21:11:28 +00:00
17 lines
299 B
JavaScript
17 lines
299 B
JavaScript
'use strict';
|
|
|
|
const defaultDocumentationConfig = require('./default-config');
|
|
|
|
const defaultConfig = {
|
|
...defaultDocumentationConfig,
|
|
session: {
|
|
key: 'plugin::documentation.sess',
|
|
maxAge: 'session',
|
|
secretKeys: ['mySecret'],
|
|
},
|
|
};
|
|
|
|
module.exports = {
|
|
default: defaultConfig,
|
|
};
|