-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathwebpack.client.config.js
97 lines (94 loc) · 2.73 KB
/
webpack.client.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
const path = require("path");
const webpack = require('webpack');
const HTMLWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CleanWebpackPlugin = require('clean-webpack-plugin');
const outputDirectory = "build/public";
module.exports = {
optimization: {
splitChunks: {
cacheGroups: {
commons: {
name: "commons",
chunks: "initial"
}
}
}
},
entry: {
vendors: "./src/client/vendors",
index: ["@babel/polyfill", "./src/client/index"]
},
output: {
path: path.resolve(__dirname, outputDirectory),
filename: "[name].bundle.js",
},
plugins: [
new CleanWebpackPlugin([outputDirectory]),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery"
}),
new HTMLWebpackPlugin({
title: "JAlgoArena",
favicon: path.resolve(__dirname, "src", "client", "assets", "favicon.ico"),
template: path.resolve(__dirname, "src", "client", "assets", "index.html"),
filename: path.resolve(__dirname, outputDirectory, "index.html"),
hash: true,
meta: {viewport: 'width=device-width, initial-scale=1, shrink-to-fit=no'}
}),
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: '[name].css',
chunkFilename: '[id].css',
})
],
devServer: {
contentBase: path.join(__dirname, "build/public"),
hot: true,
open: true,
proxy: {
"/api": "http://localhost:3000",
"/ws": "http://localhost:3000"
}
},
module: {
rules: [
{
test: /\.tsx?$/,
use: {
loader: "babel-loader"
}
},
{
enforce: "pre",
test: "/\.js$/",
loader: "source-map-loader"
},
{
test: /\.(png|svg|jpg|gif)$/,
use: [
'file-loader'
]
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
use: [
'file-loader'
]
},
{
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader,
"css-loader"
]
}
]
},
resolve: {
extensions: [".js", ".jsx", ".ts", ".tsx"]
}
};