PromucFlow_constructor/app/client/src/configs/dev.config.ts

22 lines
448 B
TypeScript
Raw Normal View History

import { SENTRY_STAGE_CONFIG } from "constants/ThirdPartyConstants";
import { AppsmithUIConfigs } from "./types";
2020-01-22 12:26:25 +00:00
const devConfig = (baseUrl: string): AppsmithUIConfigs => ({
sentry: {
enabled: false,
config: SENTRY_STAGE_CONFIG,
},
hotjar: {
enabled: false,
},
segment: {
enabled: false,
key: "NZALSCjsaxOIyprzITLz2yZwFzQynGt1",
},
2019-12-16 08:49:10 +00:00
apiUrl: "/api/",
2020-01-22 12:26:25 +00:00
baseUrl,
2020-03-23 12:40:17 +00:00
logLevel: "debug",
2020-01-22 12:26:25 +00:00
});
export default devConfig;