-
Notifications
You must be signed in to change notification settings - Fork 8
/
webpack.config.js
126 lines (121 loc) · 4.06 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
125
126
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const path = require("path");
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
const HtmlWebpackPartialsPlugin = require('html-webpack-partials-plugin');
const webpack = require("webpack");
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
const GitRevisionPlugin = require("git-revision-webpack-plugin");
const gitRevisionPlugin = new GitRevisionPlugin({ lightweightTags: true });
const mode = process.env.NODE_ENV || "development";
const prod = mode === "production";
process.traceDeprecation = true;
module.exports = {
entry: {
bundle: ["./src/main.js"],
},
resolve: {
alias: {
svelte: path.resolve("node_modules", "svelte"),
},
extensions: [".mjs", ".js", ".svelte"],
mainFields: ["svelte", "browser", "module", "main"],
},
output: {
path: path.resolve(__dirname, "public"),
filename: "[name].[hash].js",
chunkFilename: "[name].[hash].js",
publicPath: "/",
},
module: {
rules: [
{
test: /\.(?:js|mjs|cjs)$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: [["@babel/preset-env", { targets: "defaults" }]],
},
},
},
{
test: /\.svelte$/,
use: {
loader: "svelte-loader",
options: {
emitCss: true,
hotReload: true,
preprocess: require("svelte-preprocess")({
paths: ["src", "src/stylesheets"],
}),
onwarn(warning, onwarn) {
// Disable "Unused CSS Selector" warnings. We should clean out the CSS instead.
return warning.code === "css-unused-selector" || onwarn(warning);
},
},
},
},
{
test: /\.css$/,
use: [prod ? MiniCssExtractPlugin.loader : "style-loader", "css-loader"],
},
{
test: /\.svg$/,
loader: "svg-inline-loader",
options: {
removeSVGTagAttrs: false,
},
},
{
test: /\.(png|jpg|gif)$/,
use: ["file-loader"],
},
],
},
mode,
plugins: [
new MiniCssExtractPlugin({
filename: "[name].[hash].css",
}),
new webpack.DefinePlugin({
VERSION: JSON.stringify(gitRevisionPlugin.version()),
COMMITHASH: JSON.stringify(gitRevisionPlugin.commithash()),
BRANCH: JSON.stringify(gitRevisionPlugin.branch()),
}),
// load only `moment/locale/en.js` and `moment/locale/nl.js`
new webpack.ContextReplacementPlugin(/moment[/\\]locale$/, /en|nl/),
new HtmlWebpackPlugin({
template: "src/index.html.ejs",
favicon: "src/favicon.ico",
hash: true,
}),
prod ? new HtmlWebpackPartialsPlugin({
path: 'src/piwik.html',
location: 'head',
priority: 'low'
}) : false,
// prod ? new BundleAnalyzerPlugin({
// analyzerMode: "disabled",
// generateStatsFile: false,
// openAnalyzer: false
// }) : false
].filter(Boolean),
devtool: prod ? false : "source-map",
devServer: {
static: {
directory: path.join(__dirname, "./public"),
},
historyApiFallback: true,
hot: false,
compress: true,
client: {
overlay: false,
},
},
performance: { hints: false },
optimization: {
minimize: prod,
minimizer: [new UglifyJsPlugin()],
},
};