fusero-app-boilerplate/src/plugins
2025-05-21 10:17:30 +02:00
..
clients/piggy first commit - backend init 2025-04-29 07:51:17 +02:00
shared added prompter, theme for canvas api, added endpoint to delete existing routes 2025-05-08 13:39:53 +02:00
README.md first commit - backend init 2025-04-29 07:51:17 +02:00
sensible.ts first commit - backend init 2025-04-29 07:51:17 +02:00
support.ts first commit - backend init 2025-04-29 07:51:17 +02:00

Plugins Folder

Plugins define behavior that is common to all the routes in your application. Authentication, caching, templates, and all the other cross cutting concerns should be handled by plugins placed in this folder.

Files in this folder are typically defined through the fastify-plugin module, making them non-encapsulated. They can define decorators and set hooks that will then be used in the rest of your application.

Check out: