File size: 224 Bytes
f5071ca
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import Airtable from "airtable";

const apiKey = import.meta.env.VITE_AIRTABLE_KEY;
const baseId = import.meta.env.VITE_AIRTABLE_ID;

const edgyBase = new Airtable({ apiKey: apiKey }).base(baseId);

export default edgyBase;