When webpack the cheerio library, there is an error with index.js requiring package.json.
To solve this problem,
1. use json loader
{ test: /\.json$/, loader: "json-loader" }
2. set resolve with json file
extensions: ['', '.js', '.json']
https://github.com/webpack/webpack/issues/184
To solve this problem,
1. use json loader
{ test: /\.json$/, loader: "json-loader" }
2. set resolve with json file
extensions: ['', '.js', '.json']
https://github.com/webpack/webpack/issues/184
Thanks a million.
답글삭제