mirror of
https://github.com/oceanprotocol/react.git
synced 2024-11-22 09:47:06 +01:00
16 lines
351 B
JavaScript
16 lines
351 B
JavaScript
module.exports = function override(config, env) {
|
|
const path = require('path')
|
|
|
|
return {
|
|
...config,
|
|
resolve: {
|
|
...config.resolve,
|
|
alias: {
|
|
...config.resolve.alias,
|
|
react: path.resolve('../node_modules/react'),
|
|
'@oceanprotocol/lib': path.resolve('../node_modules/@oceanprotocol/lib')
|
|
}
|
|
}
|
|
}
|
|
}
|