Greg Bergé c79085eb93 feat: add Hot Reload support
Thanks to @likun7981 for the original idea!
2018-03-25 17:33:40 +00:00

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