customer-support-agent/config.ts (9 lines of code) (raw):
type Config = {
includeLeftSidebar: boolean;
includeRightSidebar: boolean;
};
const config: Config = {
includeLeftSidebar: process.env.NEXT_PUBLIC_INCLUDE_LEFT_SIDEBAR === "true",
includeRightSidebar: process.env.NEXT_PUBLIC_INCLUDE_RIGHT_SIDEBAR === "true",
};
export default config;