-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
118 lines (111 loc) · 2.98 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
'use strict';
const fs = require('fs');
const path = require('path');
const webpack = require('webpack');
const autoprefixer = require('autoprefixer');
const precss = require('precss');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const FaviconsWebpackPlugin = require('favicons-webpack-plugin');
let appEntry;
let devtool;
let plugins;
function getProcessEnv() {
const envFile = path.join(__dirname, '.env');
let data = {};
if (!fs.existsSync(envFile)) {
return {
'IMAGE_MIDDLEWARE_ENDPOINT': JSON.stringify(process.env.IMAGE_MIDDLEWARE_ENDPOINT),
};
}
var lines = fs.readFileSync(envFile).toString().split(/\r?\n/), keyValue;
for (var i = 0; i < lines.length; i++) {
if (! lines[i]) {
continue;
}
keyValue = lines[i].split('=');
data['process.env.' + keyValue[0]] = JSON.stringify(keyValue[1]);
}
return data;
}
const htmlTemplate = new HtmlWebpackPlugin({
title: 'TasteTastic',
template: './client/index.html',
mobile: true,
inject: false
});
const favIcon = new FaviconsWebpackPlugin('./client/assets/logo.png');
if (process.env.NODE_ENV === 'production') {
appEntry = [path.join(__dirname, 'client/index.js')];
devtool = 'source-map';
plugins = [
new webpack.optimize.DedupePlugin(),
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.optimize.CommonsChunkPlugin('vendor', 'vendor.js'),
new webpack.DefinePlugin(getProcessEnv()),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
screw_ie8: true
}
}),
htmlTemplate,
favIcon
];
} else {
appEntry = [
path.join(__dirname, 'client/index.js'),
`webpack-dev-server/client?http://localhost:${process.env.PORT}`,
'webpack/hot/only-dev-server'
];
devtool = 'eval';
plugins = [
new webpack.optimize.CommonsChunkPlugin('vendor', 'vendor.js'),
new webpack.NoErrorsPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.DefinePlugin(getProcessEnv()),
htmlTemplate,
favIcon
];
}
module.exports = {
entry: {
app: appEntry,
vendor: ['react', 'react-dom', 'react-relay', 'react-router', 'react-router-relay']
},
output: {
path: path.join(__dirname, 'build'),
publicPath: '/',
filename: '[name].js'
},
devtool,
module: {
loaders: [{
test: /\.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/
},{
test: /\.json$/,
loader: 'json-loader',
exclude: /node_modules/
}, {
test: /\.css$/,
loaders: ['style', 'css']
}, {
test: /\.scss$/,
loaders: [
'style',
'css?modules&importLoaders=1' +
'&localIdentName=[name]__[local]___[hash:base64:5]!postcss'
]
}, {
test: /\.(png|jpg|jpeg|gif|svg|woff|woff2)$/,
loader: 'url-loader?limit=10000&name=assets/[hash].[ext]'
}]
},
resolve: {
context: path.join(__dirname, "/client"),
modules: ['client', 'node_modules']
},
postcss: () => [precss, autoprefixer],
plugins
};