UNPKG

@fastify/autoload

Version:
15 lines (11 loc) 293 B
import fp from 'fastify-plugin' function plugin (f, opts, next) { f.get('/plugin-e', (request, reply) => { reply.send({ data: opts.e }) }) next() } export default fp(plugin, { name: 'plugin-e' }) export const autoConfig = (fastify) => { return { e: 'test-4-' + fastify.root } }