This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathwebpack.config.js
84 lines (83 loc) · 1.82 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
/* eslint-disable @typescript-eslint/no-var-requires */
const path = require('path');
const CopyPlugin = require('copy-webpack-plugin');
// const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
module.exports = {
mode: 'production',
entry: './src/index.ts',
output: {
publicPath: '',
path: path.join(__dirname, '/dist'),
filename: 'index.min.js',
sourceMapFilename: '[file].map',
libraryTarget: 'umd',
library: JSON.stringify(require('./package.json').name),
globalObject: 'this',
},
resolve: {
alias: {
react: path.resolve('./node_modules/react'),
'@mui/material': path.resolve('./node_modules/@mui/material'),
},
fallback: {
fs: false,
},
extensions: ['.ts', '.tsx', '.js'],
},
devtool: 'source-map',
module: {
rules: [
{
test: /\.(ts|js)x?$/,
exclude: [/node_modules/],
use: {
loader: 'ts-loader',
},
},
{
test: /\.css$/i,
use: [
'isomorphic-style-loader',
{
loader: 'css-loader',
options: {
importLoaders: 1,
},
},
],
},
{
test: /\.(woff(2)?|ttf|eot)(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource',
generator: {
filename: '[name][ext][query]',
},
},
{
test: /\.(png|jpg)$/i,
type: 'asset/inline',
},
],
},
plugins: [
new CopyPlugin({
patterns: [{ from: 'src/assets/fonts/fonts.css' }],
}),
// new BundleAnalyzerPlugin(),
],
externals: [
{
react: {
commonjs: 'react',
commonjs2: 'react',
},
'react-dom': {
commonjs: 'react-dom',
commonjs2: 'react-dom',
},
},
],
optimization: {
minimize: true,
},
};