Webpack ERROR in Path must be a string. Received u

2019-06-16 17:53发布

问题:

I'm update my node.js to version 7. And after run webpack in project I received error message: ERROR in Path must be a string. Received undefined

My package.json :

"dependencies": {
    "react": "^15.3.1",
    "react-native": "^0.33.0",
    "react-redux": "^4.4.5",
    "react-web": "0.4.5",
    "redux": "^3.6.0",
    "redux-thunk": "^2.1.0",
    "remote-redux-devtools": "^0.4.8"
  },
  "devDependencies": {
    "babel-core": "^6.18.2",
    "babel-loader": "^6.2.7",
    "babel-preset-react-native": "^1.9.0",
    "babel-preset-stage-1": "^6.16.0",
    "haste-resolver-webpack-plugin": "^0.2.2",
    "json-loader": "^0.5.4",
    "react-dom": "^15.3.2",
    "react-hot-loader": "^1.3.0",
    "webpack": "^1.13.3",
    "webpack-dev-server": "^1.16.2",
    "webpack-html-plugin": "^0.1.1"
  }

Anybody has a suggestion? How resolve this problem?

回答1:

When I am learning Writing your AngularJS with Redux

I got the the error "ERROR in The "path" argument must be of type string. Received type undefined webpack: Failed to compile."

At last I figured out the issue by add filename (filename: 'index.html',) to webpack.config.js accoring to CrzMarvin solution.

ThX CrzMarvin



回答2:

I had the same problem before,then I think it's something wrong with the plugin. then, I add filename to this plugin.It worked.

// webpack.config.js

plugins: [
    new HtmlWebpackPlugin({
        title: 'use plugin',
        filename: 'index.html'
    })
]


回答3:

The problem of the issue is related with Node 6 and above. Changing it for Node 5.x instead will probably fix the issue.