-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
79 lines (75 loc) · 2.2 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
const webpack = require('webpack');
const path = require('path');
var isProd = (process.env.NODE_ENV === 'production');
console.log('prod', isProd)
// Conditionally return a list of plugins to use based on the current environment.
// Repeat this pattern for any other config key (ie: loaders, etc).
function getPlugins() {
var plugins = [];
// Always expose NODE_ENV to webpack, you can now use `process.env.NODE_ENV`
// inside your code for any environment checks; UglifyJS will automatically
// drop any unreachable code.
plugins.push(
new webpack.ProvidePlugin({
'Inferno': 'react'
})
);
// Conditionally add plugins for Production builds.
if (isProd === true) {
plugins.push(new webpack.optimize.UglifyJsPlugin(
{
compressor: {
screw_ie8: true,
warnings: false
},
minimize: true
}
));
}
// plugins.push(new webpack.DefinePlugin({ "process.env": { NODE_ENV: JSON.stringify('production') } }) );
//}
// Conditionally add plugins for Development
//else {
// // ...
//}
////externals: {'react': 'React', 'react-dom': 'ReactDOM'},
return plugins;
}
module.exports = {
devtool: 'source-map',
entry: './src/index.js',
output: {
filename: 'bundle.js',
},
resolve: {
alias: {
'react': 'inferno-compat',
'react-dom': 'inferno-compat'
}
},
module: {
loaders: [
{
// JSX transpiler
test: /\.js$/,
include: [
path.join(__dirname, 'src'),
],
loader: 'babel'
},
{
// SASS transpiler
test: /(\.css|\.scss)$/,
loaders: ['style', 'css?sourceMap', 'sass?sourceMap']
},
// file loaders
{test: /.eot(\?v=\d+.\d+.\d+)?$/, loader: "file"},
{test: /.(woff|woff2)$/, loader: "file-loader?prefix=font/&limit=5000"},
{test: /.ttf(\?v=\d+.\d+.\d+)?$/, loader: "file-loader?limit=10000&mimetype=application/octet-stream"},
{test: /.svg(\?v=\d+.\d+.\d+)?$/, loader: "file-loader?limit=10000&mimetype=image/svg+xml"},
{test: /\.(png|jpg|jpeg|gif)$/, loader: 'url-loader?limit=10000&name=./images/[name].[ext]' },
{test: /\.ico$/, loader: 'file-loader?name=[name].[ext]'},
]
},
plugins: getPlugins()
}