import config from "../config"; export default function log(...args: any[]) { if (config.env !== 'prod') { console.log(...args) } }