-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
82 lines (81 loc) · 2.29 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
/* eslint-disable @typescript-eslint/no-var-requires */
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimiseCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
module.exports = {
entry: './src/index.tsx',
output: {
filename: 'app.bundle.js',
path: path.resolve('../server/src/dist'),
publicPath: '/',
},
devServer: {
hot: true,
compress: true,
contentBase: './build',
port: 3000,
historyApiFallback: true,
proxy: [{
context: [ '/api', '/auth', '/socket' ],
target: 'http://localhost:5000',
ws: true,
}],
},
devtool: 'eval-source-map',
mode: 'development',
module: {
rules: [{
test: /\.css$/,
use: [ MiniCssExtractPlugin.loader, 'css-loader', {
loader: 'postcss-loader',
options: {
ident: 'postcss',
plugins: [
require('tailwindcss'),
require('autoprefixer'),
],
},
}],
},
{
test: /\.(js|jsx|ts|tsx)$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: [
'minify',
'@babel/preset-env',
'@babel/preset-react',
'@babel/preset-typescript',
],
},
},
},
{
test: /\.(?:png|jpe?g|gif|svg|ico)$/,
loader: 'file-loader',
options: {
name: 'media/[name].[ext]',
},
},
],
},
resolve: {
extensions: [ '.js', '.jsx', '.ts', '.tsx' ],
},
plugins: [
new HtmlWebpackPlugin({
scriptLoading: 'defer',
template: './public/index.html',
favicon: './src/media/favicon.ico',
}),
new MiniCssExtractPlugin({
filename: 'style.css',
}),
],
optimization: {
minimizer: [ new OptimiseCssAssetsPlugin() ],
},
};