mirror of
https://github.com/strapi/strapi.git
synced 2025-08-12 18:53:23 +00:00
12 lines
367 B
TypeScript
12 lines
367 B
TypeScript
/**
|
|
* 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/setup-deployment-guides/configurations.html#bootstrap
|
|
*/
|
|
|
|
export default () => {};
|