mirror of
https://github.com/strapi/strapi.git
synced 2025-10-06 05:44:19 +00:00

* [WIP] Cleaning up codebase for doc repo move WIP * Fix deleted files, add links to doc repo issues * Add repo note to readme
14 lines
369 B
JavaScript
14 lines
369 B
JavaScript
'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/developer-docs/latest/concepts/configurations.html#bootstrap
|
|
*/
|
|
|
|
module.exports = () => {};
|