import { config, adapters } from "fatima";import { InfisicalSDK } from "@infisical/sdk";export default config({ load: { development: [ adapters.local.load(".env"), adapters.infisical.load(InfisicalSDK, { // You can check here the needed options, they can be loaded through the previous loader }), ], },});