@ovine/core
Version:
Build flexible admin system with json.
16 lines (15 loc) • 355 B
JavaScript
/**
* app.custom Ovine 自定义入口
*/
import "./includes";
export * from '~/app.custom';
if (process.env.HOT) {
// Hot Module Replacement API
const { hot } = module;
if (hot) {
hot.accept((err) => {
// eslint-disable-next-line
console.error('An error occurred when hot reload.', err);
});
}
}