mirror of
https://github.com/gregberge/loadable-components.git
synced 2026-01-25 15:24:15 +00:00
10 lines
283 B
JavaScript
10 lines
283 B
JavaScript
/* eslint-disable no-underscore-dangle */
|
|
|
|
const _config = {
|
|
// Automatically load components in hot reload environment
|
|
hotReload: process.env.NODE_ENV === 'development',
|
|
}
|
|
|
|
export const setConfig = config => Object.assign(_config, config)
|
|
export const getConfig = () => _config
|