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

21 lines
427 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,
});
export default devConfig;