11 lines
317 B
TypeScript
11 lines
317 B
TypeScript
const unsupportedMessage = 'Legacy Supabase data access is no longer supported in learning_ai_invt_trdg web runtime.';
|
|
|
|
export const supabase = {
|
|
from: (...args: any[]) => {
|
|
void args;
|
|
throw new Error(unsupportedMessage);
|
|
},
|
|
};
|
|
|
|
export const SUPABASE_UNSUPPORTED_MESSAGE = unsupportedMessage;
|