Ringtone app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
339 B

  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. });