diff --git a/config/functions/bootstrap.js b/config/functions/bootstrap.js deleted file mode 100644 index 5f8ceb9..0000000 --- a/config/functions/bootstrap.js +++ /dev/null @@ -1,13 +0,0 @@ -'use strict'; - -/** - * An asynchronous bootstrap function that runs before - * your application gets started. - * - * This gives you an opportunity to set up your data model, - * run jobs, or perform some special logic. - * - * See more details here: https://strapi.io/documentation/v3.x/concepts/configurations.html#bootstrap - */ - -module.exports = () => {}; diff --git a/config/functions/cron.js b/config/functions/cron.js deleted file mode 100644 index 8aa2edd..0000000 --- a/config/functions/cron.js +++ /dev/null @@ -1,21 +0,0 @@ -'use strict'; - -/** - * Cron config that gives you an opportunity - * to run scheduled jobs. - * - * The cron format consists of: - * [SECOND (optional)] [MINUTE] [HOUR] [DAY OF MONTH] [MONTH OF YEAR] [DAY OF WEEK] - * - * See more details here: https://strapi.io/documentation/v3.x/concepts/configurations.html#cron-tasks - */ - -module.exports = { - /** - * Simple example. - * Every monday at 1am. - */ - // '0 1 * * 1': () => { - // - // } -}; diff --git a/config/functions/responses/404.js b/config/functions/responses/404.js deleted file mode 100644 index bcbfb07..0000000 --- a/config/functions/responses/404.js +++ /dev/null @@ -1,5 +0,0 @@ -'use strict'; - -module.exports = async (/* ctx */) => { - // return ctx.notFound('My custom message 404'); -};