mirror of
https://github.com/strapi/strapi.git
synced 2025-07-17 14:02:21 +00:00
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const bootstrap = require('./server/bootstrap');
|
||
|
const services = require('./server/services');
|
||
|
const middlewares = require('./server/middlewares');
|
||
|
const config = require('./server/config');
|
||
|
|
||
|
module.exports = () => ({
|
||
|
bootstrap,
|
||
|
config,
|
||
|
middlewares,
|
||
|
services,
|
||
|
});
|