-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
124 lines (113 loc) · 2.72 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
119
120
121
122
123
124
const webpack = require("webpack");
const path = require("path");
const ManifestPlugin = require("webpack-manifest-plugin");
const WebpackMd5Hash = require("webpack-md5-hash");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const CleanWebpackPlugin = require("clean-webpack-plugin");
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ENABLE_GOOGLE_ANALYTICS_IN_PROD = true;
const config = {
devtool: "source-map",
entry: {
"app": path.resolve(__dirname, "src/index.jsx")
},
output: {
path: path.resolve(__dirname, "app/"),
filename: "[name].[hash].js"
},
resolve: {
extensions: [".js", ".jsx"],
alias: {
react: "preact-compat",
"react-dom": "preact-compat"
}
},
module: {
rules: [
{
enforce: "pre",
test: /\.jsx?$/,
loader: "eslint-loader",
exclude: /node_modules/
},
{
test: /\.jsx?$/,
loader: "babel-loader"
},
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: "css-loader"
})
}
]
},
plugins: [
new CleanWebpackPlugin(["app"], {
root: path.resolve(__dirname),
verbose: true,
dry: false
}),
new WebpackMd5Hash(),
new ManifestPlugin({
fileName: "webpack_manifest.json"
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
sourceMap: true
})
]
};
let prod = false;
let titlePrefix = '';
if (process.env.NODE_ENV === "production") {
config.plugins.push(
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify("production")
}
})
);
prod = true;
} else {
titlePrefix = '[DEV] ';
}
if (process.env.NODE_ENV === "watch") {
config.output.filename = "[name].js";
config.plugins.push(
new ExtractTextPlugin("[name].css")
);
titlePrefix = '[WATCH] ';
} else {
config.plugins.push(
new ExtractTextPlugin("[name].[contenthash].css")
);
config.plugins.push(
new BundleAnalyzerPlugin({
analyzerMode: "static",
reportFilename: "report.html"
})
);
config.performance = {
hints: "warning"
};
}
config.plugins.push(new HtmlWebpackPlugin({
title: `${titlePrefix}Slowness Kills`,
template: 'src/index.ejs',
filename: '../index.html',
prod,
analytics: prod && ENABLE_GOOGLE_ANALYTICS_IN_PROD
}));
config.plugins.push(new HtmlWebpackPlugin({
title: `${titlePrefix}About Slowness Kills Project`,
template: 'src/about.ejs',
filename: '../about.html',
prod,
analytics: prod && ENABLE_GOOGLE_ANALYTICS_IN_PROD
}));
module.exports = config;