8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
|
const path = require('path');
|
||
|
|
||
|
module.exports = ({ config }) => {
|
||
|
config.resolve.alias = {
|
||
|
'react-native': 'react-native-web'
|
||
|
};
|
||
|
return config;
|
||
|
};
|