2022-05-31 16:40:09 +02:00
|
|
|
import '@strapi/strapi';
|
2022-04-12 15:42:57 +02:00
|
|
|
|
2022-04-12 15:30:09 +02:00
|
|
|
export default {
|
2022-05-31 16:40:09 +02:00
|
|
|
/**
|
|
|
|
|
* An asynchronous register function that runs before
|
|
|
|
|
* your application is initialized.
|
|
|
|
|
*
|
|
|
|
|
* This gives you an opportunity to extend code.
|
|
|
|
|
*/
|
|
|
|
|
register(/*{ strapi }*/) {},
|
2022-04-12 15:30:09 +02:00
|
|
|
|
2022-05-31 16:40:09 +02:00
|
|
|
/**
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
bootstrap(/*{ strapi }*/) {},
|
2022-04-12 15:30:09 +02:00
|
|
|
};
|