File size: 351 Bytes
a566fb0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { createClient } from '@base44/sdk';
import { appParams } from '@/lib/app-params';
const { appId, token, functionsVersion, appBaseUrl } = appParams;
//Create a client with authentication required
export const base44 = createClient({
appId,
token,
functionsVersion,
serverUrl: '',
requiresAuth: false,
appBaseUrl
});
|