Skip to main content
Version: 4.2.x

xdk-config

@accedo/xdk-config

The config module of the XDK module. It takes the configuration exported by xdk.config.js and provide the getter and setter for other XDK module.

To ensure XDK function properly, the loading of XDK config should happen before xdk is imported.

Usage

// preflight.js
import xdkConfigStore from '@accedo/xdk-config';
import config from './xdk.config';

xdkConfigStore.load(config);

// index.js
import './preflight';
import xdk from '@accedo/xdk-core';
// Other app code