-
Notifications
You must be signed in to change notification settings - Fork 4
/
webpack.config.js
84 lines (80 loc) · 2.26 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
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const webpack = require('webpack');
module.exports = (env, argv) => {
const isProduction = argv.mode === 'production';
const config = {
entry: './src/index.tsx',
output: {
filename: 'bundle.js',
},
module: {
rules: [
{
test: /\.(ts|js)x?$/,
exclude: /node_modules/,
loader: 'babel-loader',
options: {
presets: ["@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript"]
}
},
{
test: /\.s?css$/,
use: [
isProduction ? MiniCssExtractPlugin.loader : 'style-loader',
{
loader: 'css-loader',
options: {
modules: {
auto: true
}
}
},
{
loader: 'sass-loader'
}
]
}
],
},
resolve: {
extensions: ['.js', '.jsx', '.tsx', '.ts', '.scss'],
alias: {
'components': path.resolve(__dirname, '.', 'src', 'components'),
'gateway': path.resolve(__dirname, '.', 'src', 'gateway'),
'hooks': path.resolve(__dirname, '.', 'src', 'hooks'),
'providers': path.resolve(__dirname, '.', 'src', 'providers'),
'utils': path.resolve(__dirname, '.', 'src', 'utils'),
'types': path.resolve(__dirname, '.', 'src', 'types'),
'store': path.resolve(__dirname, '.', 'src', 'store'),
'validation-schemas': path.resolve(__dirname, '.', 'src', 'validation-schemas'),
},
},
plugins: [
new webpack.ProgressPlugin(),
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
template: './src/index.html',
}),
],
devServer: {
historyApiFallback: true,
open: true,
hot: true,
port: 8080,
},
};
if (isProduction) {
config.plugins.push(new webpack.HotModuleReplacementPlugin());
}
if (isProduction) {
config.plugins.push(
new MiniCssExtractPlugin({
filename: '[name].css',
}),
);
}
return config;
};