UNPKG

@fastify/autoload

Version:
17 lines (11 loc) 315 B
'use strict' const path = require('node:path') const fastifyUrlData = require('@fastify/url-data') const AutoLoad = require('../../../') module.exports = function (fastify, opts, next) { fastify.register(fastifyUrlData) fastify.register(AutoLoad, { dir: path.join(__dirname, 'plugins') }) next() }