the code of webpack4 bootstarp in development mode.
/******/ (function(modules) { // webpackBootstrap
...
/******/ function hotCreateRequire(moduleId) {
/******/ var me = installedModules[moduleId];
/******/ if (!me) return __webpack_require__;
/******/ var fn = function(request) {
/******/ if (me.hot.active) {
/******/ if (installedModules[request]) {
// here use 'includes' not supported in es5
/******/ if (!installedModules[request].parents.includes(moduleId))
And my development enviroment is not chrome, it didn't support these new features.
So how can i solve it ?
Or I have to use webpack3?