-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwebpack.config.js
67 lines (66 loc) · 1.51 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
var CommonsChunkPlugin = require("webpack/lib/optimize/CommonsChunkPlugin");
var HtmlWebpackPlugin = require('html-webpack-plugin');
var CopyWebpackPlugin = require('copy-webpack-plugin');
const path = require('path');
module.exports = {
entry: {
login: './src/index.login.jsx',
#: './src/index.#.jsx',
app: './src/index.app.jsx',
},
output: {
path: path.resolve(__dirname, 'demo'),
filename: '[name].js'
},
module: {
loaders: [
{
test: /\.jsx$/,
loader: 'babel-loader',
query: {presets: ['es2015', 'react']}
},
{
test: /\.json$/,
loader: 'json-loader'
},
{
test: /\.css$/,
loader: 'style-loader!css-loader'
}
]
},
plugins: [
new CommonsChunkPlugin({
name: 'commons',
filename: 'commons.js'
}),
new HtmlWebpackPlugin({
title: 'JS Chat Demo',
filename: 'login.html',
hash: true,
chunks: ['commons', 'login']
}),
new HtmlWebpackPlugin({
title: 'JS Chat Demo',
filename: '#.html',
hash: true,
chunks: ['commons', '#']
}),
new HtmlWebpackPlugin({
title: 'JS Chat Demo',
filename: 'app.html',
hash: true,
chunks: ['commons', 'app']
}),
new CopyWebpackPlugin([
{from: 'img', to: 'img'}
]),
],
externals: {
'react-native': 'undefined',
'websocket': 'undefined'
},
resolve: {
extensions: ['*', '.js', '.jsx']
}
}