Providers
vercel
"Your complete platform for the web..."
Dependencies
npm install -g vercelpnpm i -g vercelyarn global add vercelAuthenticating
First, log in:
vercel loginThen, link your project:
vercel linkToken Authenticating
Fatima also supports token-based authentication, which can be useful for people running containers.
Just grab your VERCEL_TOKEN, VERCEL_ORG_ID, and VERCEL_PROJECT_ID from your Vercel account and set them as environment variables, or pass down as loader options.
Importing the loader
import { config, providers } from "fatima";
export default config({
providers: {
development: providers.vercel({
// Check out here with intellisense
}),
},
});