Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Webpack ERROR in Path must be a string. Received undefined

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?

like image 947
ximet Avatar asked Nov 05 '16 09:11

ximet


Video Answer


2 Answers

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.enter image description here"

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

ThX CrzMarvin

like image 174
L.Guan Avatar answered Oct 24 '22 06:10

L.Guan


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'
    })
]
like image 1
CrzMarvin Avatar answered Oct 24 '22 08:10

CrzMarvin