Ringtone app
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

sensible.ts 339 B

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