Source: utilities/settings/settings.js

/**
 * Copyright IBM Corp. 2020, 2025
 *
 * This source code is licensed under the Apache-2.0 license found in the
 * LICENSE file in the root directory of this source tree.
 */

/**
 * Global settings
 *
 * @exports ibmdotcom.settings
 * @type {object} Settings object
 * @property {string} [stablePrefix=c4d] stable prefix
 * @property {string} [prefix=cds] core Carbon prefix
 * Carbon for IBM.com v2.23.0',
 */
const settings = {
  version: 'Carbon for IBM.com v2.23.0',
  stablePrefix: 'c4d',
  prefix: 'cds',
};

export default settings;