UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

11 lines (10 loc) 344 B
export function getHotReloadAcceptor(importPaths) { return ( '/* Needed for HMR and RHL functionality with authored assets. */\n' + 'if (process.env.NODE_ENV === \'development\' && (module as any).hot) {\n' + ' (module as any).hot.accept([\n' + importPaths.map((path) => ` '${path}',\n`) + ' ]);\n' + '}' ); }