-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.config.js
125 lines (118 loc) · 3.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
const webpack = require("webpack");
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const {CleanWebpackPlugin} = require("clean-webpack-plugin");
const TerserPlugin = require("terser-webpack-plugin");
const proxy = require("./proxy.config");
// Webpack config
module.exports = (env, argv) => {
// variables
const isDev = argv.mode === "development";
const sourcePath = path.join(__dirname, "./src");
const outPath = path.join(__dirname, "./dist");
return {
target: "web",
context: sourcePath,
entry: {
app: "./app/bootstrap.tsx",
},
output: {
path: outPath,
filename: "[name]-[fullhash].js",
chunkFilename: "[name]-[chunkhash].js",
},
resolve: {
extensions: [".ts", ".tsx", ".js", ".json"],
alias: {
globals: path.join(sourcePath, "scss/global.scss"),
variables: path.join(sourcePath, "scss/variables.scss"),
},
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: "ts-loader",
options: {
configFile: "tsconfig.app.json",
},
},
{
enforce: "pre",
test: /\.js$/,
loader: "source-map-loader",
exclude: [path.join(__dirname, "node_modules")],
},
{
test: /\.html$/,
use: "html-loader",
exclude: path.join(sourcePath, "index.html"),
},
{
test: /\.(gif|png|jpg|jpeg)$/,
loader: "url-loader",
options: {
limit: false,
},
},
{
test: /\.svg$/,
use: ["@svgr/webpack"],
},
{
test: /\.(bmp|mp3|mp4|ogg|wav|eot|ttf|woff|woff2)$/,
loader: "file-loader",
options: {
outputPath: "assets",
},
},
],
},
plugins: [
new webpack.DefinePlugin({
PRODUCTION: !isDev,
VERSION: JSON.stringify(env.VERSION)
}),
!isDev && new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
hash: true,
template: "./index.html",
favicon: "./favicon.ico",
meta: {
charset: {charset: "utf-8"},
"x-ua-compatible": {"http-equiv": "x-ua-compatible", content: "ie=edge"},
viewport: "width=device-width, initial-scale=1, shrink-to-fit=no",
manifest: "./site.webmanifest",
},
}),
].filter(Boolean),
optimization: {
runtimeChunk: "single",
minimize: true,
minimizer: [new TerserPlugin()],
splitChunks: {
chunks: "all",
maxInitialRequests: 14,
cacheGroups: {
vendor: {
name: "vendor",
test: /[\\/]node_modules[\\/]/,
},
},
},
},
devServer: {
port: 4200,
contentBase: sourcePath,
// https: true,
inline: true,
historyApiFallback: {
disableDotRule: true,
},
proxy: proxy,
stats: "minimal",
clientLogLevel: "warning",
},
devtool: isDev ? "source-map" : false,
};
};