mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-01-12 22:51:09 +08:00
20 lines
313 B
JavaScript
20 lines
313 B
JavaScript
module.exports = {
|
|
entry: {
|
|
example: './example.js'
|
|
},
|
|
module: {
|
|
loaders: [
|
|
{
|
|
test: /\.jsx?$/,
|
|
exclude: /node_modules/,
|
|
loader: 'babel-loader',
|
|
query: { cacheDirectory: true }
|
|
}
|
|
]
|
|
},
|
|
output: {
|
|
filename: 'example.js',
|
|
path: '../dist'
|
|
}
|
|
}
|