benjaminpalko/strapi/src/index.ts
Benjamin Palko b2844e8d76
Some checks failed
Deployment / Deploy website (push) Failing after 1m9s
Deployment / Deploy strapi (push) Successful in 2m59s
strapi (#3)
Co-authored-by: Benjamin Palko <benjaminpalko@hotmail.com>
Reviewed-on: #3
2025-05-03 23:35:06 -04:00

20 lines
550 B
TypeScript

// import type { Core } from '@strapi/strapi';
export default {
/**
* An asynchronous register function that runs before
* your application is initialized.
*
* This gives you an opportunity to extend code.
*/
register(/* { strapi }: { strapi: Core.Strapi } */) {},
/**
* 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 }: { strapi: Core.Strapi } */) {}
};