[fix] NetInfo export

This commit is contained in:
Nicolas Gallagher
2016-02-18 23:03:59 -08:00
parent e5ecc26d21
commit 0567232942
10 changed files with 82 additions and 79 deletions
+4 -3
View File
@@ -1,5 +1,6 @@
var constants = require('./constants')
var webpack = require('webpack')
const constants = require('./constants')
const path = require('path')
const webpack = require('webpack')
module.exports = {
devServer: {
@@ -30,7 +31,7 @@ module.exports = {
],
resolve: {
alias: {
'react-native': '../../src'
'react-native': path.join(__dirname, '../dist/react-native-web')
}
}
}