Closed jean-michelet closed 5 months ago
Can be usefull to autoload plugins:
import fastifyMysql from "@fastify/mysql"; export const autoConfig = (fastify) => { return { promise: true, host: fastify.config.MYSQL_HOST, user: fastify.config.MYSQL_USER, password: fastify.config.MYSQL_PASSWORD, database: fastify.config.MYSQL_DATABASE, port: Number(fastify.config.MYSQL_PORT) } } export default fastifyMysql
@climba03003 ptal
Can be usefull to autoload plugins: