Customize

Customize

You may configure and extend your backend however you want.

const app = new Application();
 
app.register([
  coreNodeProvider,
  // ...custom providers 🎈
]);
 
app.boot();
 
export { app };