使用React Native
(Webpack)为网络构建react-native-web
项目
我在项目内的多个文件夹中都有一个package.json
,以便通过import
使@
更加容易。
resolve
的{{1}}文档提到了这一点
如果该文件夹包含package.json文件,则将按顺序查找resolve.mainFields配置选项中指定的字段,然后package.json中的第一个此类字段将确定文件路径。
我的Webpack
文件看起来像这样
webpack.config.js
,项目目录看起来像这样,在几个文件夹中带有const path = require('path');
const appDirectory = path.resolve(__dirname, '../');
const imageLoaderConfiguration = {
test: /\.(gif|jpe?g|png|svg)$/,
use: {
loader: 'url-loader',
options: {
name: '[name].[ext]'
}
}
};
module.exports = {
entry: {
app: './index.android.js'
},
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
},
module: {
rules: [
{test: /\.js$|jsx/ , loader:'babel-loader', exclude: '/node_modules/'},
imageLoaderConfiguration
]
},
resolve: {
extensions: ['.tsx', '.ts', '.js', '.json'],
mainFields: ['browser', 'module', 'main'],
mainFiles: ['index'],
alias: {'react-native$': 'react-native-web'},
modules: [path.resolve(__dirname, 'src'), 'node_modules'],
}
};
。