mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 09:56:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			260 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			260 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const bootstrap = require('./server/bootstrap');
 | |
| const services = require('./server/services');
 | |
| const config = require('./server/config');
 | |
| 
 | |
| module.exports = (/* strapi, config */) => {
 | |
|   return {
 | |
|     config,
 | |
|     bootstrap,
 | |
|     services,
 | |
|   };
 | |
| };
 | 
