strapi-plugin-config-sync/playground/src/index.ts

21 lines
566 B
TypeScript
Raw Normal View History

2025-06-28 17:21:16 +02:00
// import type { Core } from '@strapi/strapi';
2021-12-31 13:28:04 +01:00
2025-06-28 17:21:16 +02:00
export default {
2021-12-31 13:28:04 +01:00
/**
* An asynchronous register function that runs before
* your application is initialized.
*
* This gives you an opportunity to extend code.
*/
2025-06-28 17:21:16 +02:00
register(/* { strapi }: { strapi: Core.Strapi } */) {},
2021-12-31 13:28:04 +01: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.
*/
2025-06-28 17:21:16 +02:00
bootstrap(/* { strapi }: { strapi: Core.Strapi } */) {},
2021-12-31 13:28:04 +01:00
};