UNPKG

445 BPlain TextView Raw
1/**
2 * Project Configuration.
3 *
4 * NOTE: All file/folder paths should be relative to the project root. The
5 * absolute paths should be resolved during runtime by our build internal/server.
6 */
7import * as envVars from '@cortexql/core/config/envVars';
8import { defaultValues } from '@cortexql/core/config/defaultValues';
9import { ConfigSource, loadConfig } from '.';
10
11loadConfig({
12 ...defaultValues,
13 // put your custom config values here
14});