2019-11-25 12:22:05 +00:00
|
|
|
import { SENTRY_STAGE_CONFIG } from "constants/ThirdPartyConstants";
|
|
|
|
|
import { AppsmithUIConfigs } from "./types";
|
|
|
|
|
|
2020-01-22 12:26:25 +00:00
|
|
|
const devConfig = (baseUrl: string): AppsmithUIConfigs => ({
|
2019-11-25 12:22:05 +00:00
|
|
|
sentry: {
|
|
|
|
|
enabled: false,
|
|
|
|
|
config: SENTRY_STAGE_CONFIG,
|
|
|
|
|
},
|
|
|
|
|
hotjar: {
|
|
|
|
|
enabled: false,
|
|
|
|
|
},
|
|
|
|
|
segment: {
|
|
|
|
|
enabled: false,
|
2020-03-06 08:14:59 +00:00
|
|
|
key: "NZALSCjsaxOIyprzITLz2yZwFzQynGt1",
|
2019-11-25 12:22:05 +00:00
|
|
|
},
|
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
|
|
|
});
|
2019-11-25 12:22:05 +00:00
|
|
|
|
|
|
|
|
export default devConfig;
|