-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
123 lines (115 loc) · 2.7 KB
/
Copy pathwebpack.config.js
File metadata and controls
123 lines (115 loc) · 2.7 KB
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
119
120
121
122
123
const DIST_DIR = 'public';
var debug = process.env.NODE_ENV !== "production";
var path = require('path');
var webpack = require('webpack');
var CleanWebpackPlugin = require('clean-webpack-plugin');
var CopyWebpackPlugin = require('copy-webpack-plugin');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var ExtractTextPlugin = require("extract-text-webpack-plugin");
//Files to copy
var projectStaticFiles = [
//{ from: './node_modules/underscore' , to:'libs/underscore'},
{ from: './statics/css', to: 'css'},
];
var plugins = [
new CleanWebpackPlugin([DIST_DIR], {
root: __dirname,
verbose: true,
dry: false,
exclude: []
}),
new webpack.optimize.CommonsChunkPlugin({names: ['vendor', 'manifest']}),
new CopyWebpackPlugin(projectStaticFiles),
new HtmlWebpackPlugin({
filename: 'index.html',
template: './src/index.ejs',
chunks: ['app', 'vendor', 'manifest']
}),
new ExtractTextPlugin("css/[name].[chunkhash].css"),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV)
}),
];
if(!debug){
plugins.push(
new webpack.optimize.UglifyJsPlugin()
);
}
var rules = [
{
test: /\.js$/,
enforce: "pre",
exclude: /node_modules/,
loader: 'eslint-loader'
},
{
test: /\.js$/,
exclude: /node_modules\/(?!(autotrack|dom-utils))/,
loader: 'babel-loader?cacheDirectory=true',
query: {
// presets: ['env']
//presets: ['react', 'es2015', 'stage-1']
}
},
];
if(!debug){
rules.push({
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: "css-loader?minimize=true",
})
});
}
else{
rules.push({
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: "css-loader",
})
});
}
module.exports = {
resolve: {
modules: [path.resolve(__dirname, "app_client_common"), "node_modules"],
},
module: {
rules: rules
},
externals: {
"_": "_",//underscore
"underscore": "_",
"window": "window", //only for google maps
"Promise": "Promise"
},
entry: {
app: "./src/index.js",
vendor: [
"babel-polyfill"
]
},
output: {
filename: '[name].[chunkhash].js',
path: path.resolve(__dirname, DIST_DIR),
publicPath: '/'
},
devServer:{
// https: true,
contentBase: path.join(__dirname, "public"),
historyApiFallback: {
rewrites: [
{ from: /^\/$/, to: '/index.html' },
{ from: /^\/app(\/.*)?$/, to: '/index.html' },
]
},
proxy: [{
context: ["/__"],
target: "http://localhost:5000"
}]
},
plugins: plugins
};
if(debug){
module.exports.devtool = 'inline-source-map';
}