mirror of
https://github.com/strapi/strapi.git
synced 2025-07-14 20:41:51 +00:00

* Use a scalar to register the i18n locale arg * Remove useless files & comments * Use custom config for apollo server & the pagination (better handling of pagination) * Fix missing strapi variable being transmitted to wrapResolvers/parseMiddlewares * PR review comments
12 lines
205 B
JavaScript
12 lines
205 B
JavaScript
'use strict';
|
|
|
|
const bootstrap = require('./server/bootstrap');
|
|
const services = require('./server/services');
|
|
|
|
module.exports = (/* strapi, config */) => {
|
|
return {
|
|
bootstrap,
|
|
services,
|
|
};
|
|
};
|