Spaces:
Sleeping
Sleeping
File size: 322 Bytes
78475cb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /**
* Game configuration
* Set different values for development vs production
*/
// Check if we're in production (deployed) or development (local)
const isProduction = import.meta.env.PROD;
export const CONFIG = {
// Number of lines needed to advance to the next level
LINES_PER_LEVEL: isProduction ? 15 : 2,
};
|