-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.prod.config.js
81 lines (80 loc) · 2.44 KB
/
webpack.prod.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
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: {
index: './js/index.js'
},
output: {
path: path.resolve(__dirname, 'build'),
filename: '[hash].[name].bundle.js',
chunkFilename: '[hash].[id].bundle.js',
publicPath: './'
},
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader/useable', 'css-loader', 'postcss-loader']
},
{
test: /\.less$/,
use: ['style-loader', 'css-loader', 'less-loader', 'postcss-loader']
},
{
test: /\.(js|jsx)$/,
use: [
'react-hot-loader',
{
loader: 'babel-loader',
options: {
presets: ['es2015', 'react']
}
}
],
exclude: /(node_modules)/
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
loaders: [
'file-loader?name=img/[name].[ext]',
'image-webpack-loader?bypassOnDebug&optimizationLevel=7&interlaced=false'
]
},
{
test: /\.(eot|svg|ttf|woff|woff2)\w*/,
use: ['file-loader']
}
]
},
resolve: {
modules: [
path.resolve(__dirname, 'node_modules'),
path.resolve(__dirname),
path.resolve(__dirname, 'js', 'fw', 'lib')
]
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}),
new webpack.optimize.CommonsChunkPlugin('[hash].common.bundle.js'),
new HtmlWebpackPlugin({
title: 'iService - iPhone, iMac, MacBook, iPod Repairs and Service Center',
description: 'iService is an iPhone, iMac, MacBook, iPod Repairs and Service Center',
username: 'root',
filename: 'index.html',
inject: 'body',
template: 'index.html_vm',
favicon: 'img/glyph.png',
hash: false
})
]
};