mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 03:43:34 +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,
 | 
						|
  };
 | 
						|
};
 |