blob: b450d84a41c0b6f683d8ca27ae90efa73f0cad1c (
plain)
1
2
3
4
5
6
7
|
export const coordinateLength = 6;
export const maxSize = Math.pow(16, coordinateLength);
export const supabase = {
url: import.meta.env.VITE_SUPABASE_URL,
key: import.meta.env.VITE_SUPABASE_KEY
};
|