-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
95 lines (92 loc) · 2.27 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
85
86
87
88
89
90
91
92
93
94
95
const ESLintPlugin = require('eslint-webpack-plugin'); // eslint
const CopyPlugin = require('copy-webpack-plugin');
const path = require('path');
const portFinderSync = require('portfinder-sync');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
module.exports = {
entry: {
home: './src/pages/home/index.tsx',
},
devServer: {
historyApiFallback: true,
hot: false,
open: ['/home/index.html'],
port: portFinderSync.getPort(8080),
allowedHosts: ['.dingtalk.com'],
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': 'GET, POST',
'Access-Control-Allow-Headers':
'X-Requested-With, content-type, Authorization',
},
},
output: {
filename: '[name]/index.js',
path: path.resolve(__dirname, 'dist'),
},
resolve: {
alias: {
'@': './src',
},
extensions: ['.ts', '.tsx', '.js', '.json'],
},
externals: {
react: 'React',
'react-dom': 'ReactDOM',
},
module: {
rules: [
{
test: /\.ts(x?)$/,
exclude: /node_modules/,
include: path.resolve(__dirname, 'src'),
use: ['babel-loader'],
},
{
test: /\.css$/i,
use: ['style-loader', 'css-loader', 'postcss-loader'],
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'img/[name].[hash:7].[ext]',
},
},
{
test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'media/[name].[hash:7].[ext]',
},
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'fonts/[name].[hash:7].[ext]',
},
},
],
},
plugins: [
new CleanWebpackPlugin(),
new ESLintPlugin({
context: path.resolve(__dirname, 'src'),
emitError: true,
emitWarning: true,
}),
new CopyPlugin({
patterns: [{ from: 'public' }],
}),
new HtmlWebpackPlugin({
filename: 'home/index.html',
inject: false,
template: 'src/pages/home/index.html',
}),
],
};