You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error is caused by webpack, since webpack does not support require('./path/to/json') by default. (In this case estraverse requires its package.json)
To solve this issue, you can use webpack/json-loader by using --module-bind json or module.loaders: [{test: /\.json$/, loader: "json"}]
When i was using
[email protected]
in my develop environment (dev/latest_test
branch on https://github.com/vuejs/vue-validator), OccurredError: Cannot find module
Error.Please see the detail error log:
https://gist.github.com/kazupon/0664c72c0a4ec4513c9d
BTW, When i was using
[email protected]
, it works.What I'm doing wrong?
Thanks!
The text was updated successfully, but these errors were encountered: