8 lines
289 B
JavaScript
8 lines
289 B
JavaScript
// backend/config/db.js
|
|
import 'dotenv/config';
|
|
|
|
export const APP_TIMEZONE =
|
|
process.env.APP_TIMEZONE || 'Asia/Kuala_Lumpur'; // default for Nilai
|
|
//process.env.APP_TIMEZONE || 'Asia/Jakarta'; // default for Indonesia
|
|
|
|
// All dates from DB are treated as if they are in this timezone
|