-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.client.js
87 lines (84 loc) · 2.14 KB
/
webpack.client.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
const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const path = require('path');
function isDevMode(env) {
return Boolean(env && env.dev);
}
function getEntry(env) {
const entries = [];
if (isDevMode(env)) {
entries.push('webpack-dev-server/client?http://0.0.0.0:8080');
}
entries.push(
'./src/client/index',
);
return entries;
}
module.exports = function config(env) {
return {
cache: true,
devServer: {
contentBase: path.resolve(__dirname, 'dist'),
disableHostCheck: true,
headers: {
'Access-Control-Allow-Origin': '*',
},
host: '0.0.0.0',
hot: true,
publicPath: 'http://0.0.0.0:8080/',
stats: 'errors-only',
},
devtool: isDevMode(env) ? 'cheap-module-source-map' : 'hidden-source-map',
entry: {
client: getEntry(env),
},
mode: isDevMode(env) ? 'development' : 'production',
module: {
rules: [
{
test: /\.js$/,
include: [
path.join(__dirname, 'node_modules'),
path.join(__dirname, 'src/client'),
],
use: 'babel-loader',
},
{
test: /\.css$/,
include: [
path.join(__dirname, 'src/client'),
path.join(__dirname, 'node_modules/material-react-components')
],
use: [
isDevMode(env) ? 'style-loader' : MiniCssExtractPlugin.loader,
'css-loader?modules&localIdentName=[name].[local]',
'postcss-loader',
],
},
{
test: /\.svg$/,
include: [
path.join(__dirname, 'src/client'),
path.join(__dirname, 'node_modules/material-design-icons'),
],
use: [
'babel-loader',
'react-svg-loader',
],
},
],
},
output: {
filename: '[name].js',
publicPath: 'http://0.0.0.0:8080/',
},
plugins: [
new CaseSensitivePathsPlugin(),
new MiniCssExtractPlugin(),
],
stats: {
children: false,
},
target: 'web',
};
};