Ringtone app
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

12345678910111213
  1. import fp from 'fastify-plugin';
  2. import sensible, {SensibleOptions} from 'fastify-sensible';
  3. /**
  4. * This plugins adds some utilities to handle http errors
  5. *
  6. * @see https://github.com/fastify/fastify-sensible
  7. */
  8. export default fp<SensibleOptions>(async (fastify, opts) => {
  9. fastify.register(sensible, {
  10. errorHandler: false,
  11. });
  12. });