upload-apollo-client/app/next.config.js
Jayden Seric 832a13147c Updated dependencies.
The latest version of Next.js ships with webpack v3, which requires a
config workaround.
2017-07-08 18:23:10 +10:00

8 lines
176 B
JavaScript

module.exports = {
webpack: config => {
// See https://github.com/webpack/webpack/issues/5135
config.module.strictThisContextOnImports = true
return config
}
}