diff options
Diffstat (limited to 'server/src/bootstrap.ts')
| -rw-r--r-- | server/src/bootstrap.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/server/src/bootstrap.ts b/server/src/bootstrap.ts new file mode 100644 index 0000000..12abc99 --- /dev/null +++ b/server/src/bootstrap.ts @@ -0,0 +1,7 @@ +import type { Core } from '@strapi/strapi'; + +const bootstrap = ({ strapi }: { strapi: Core.Strapi }) => { + // bootstrap phase +}; + +export default bootstrap; |
