mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 01:47:13 +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,
 | |
| };
 | 
