rsnext/examples/with-react-native-web/next.config.js

18 lines
407 B
JavaScript
Raw Normal View History

module.exports = {
2020-05-18 21:24:37 +02:00
webpack: (config) => {
config.resolve.alias = {
...(config.resolve.alias || {}),
// Transform all direct `react-native` imports to `react-native-web`
'react-native$': 'react-native-web',
}
config.resolve.extensions = [
'.web.js',
'.web.jsx',
'.web.ts',
'.web.tsx',
...config.resolve.extensions,
]
return config
},
}