2019-11-25 12:22:05 +00:00
|
|
|
import { SENTRY_STAGE_CONFIG } from "constants/ThirdPartyConstants";
|
2019-12-16 08:49:10 +00:00
|
|
|
import { STAGE_BASE_URL } from "constants/ApiConstants";
|
2019-11-25 12:22:05 +00:00
|
|
|
import { AppsmithUIConfigs } from "./types";
|
|
|
|
|
|
|
|
|
|
const devConfig: AppsmithUIConfigs = {
|
|
|
|
|
sentry: {
|
|
|
|
|
enabled: false,
|
|
|
|
|
config: SENTRY_STAGE_CONFIG,
|
|
|
|
|
},
|
|
|
|
|
hotjar: {
|
|
|
|
|
enabled: false,
|
|
|
|
|
},
|
|
|
|
|
segment: {
|
|
|
|
|
enabled: false,
|
|
|
|
|
},
|
2019-12-16 08:49:10 +00:00
|
|
|
apiUrl: "/api/",
|
|
|
|
|
baseUrl: STAGE_BASE_URL,
|
2019-11-25 12:22:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default devConfig;
|