-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.common.js
81 lines (80 loc) · 1.58 KB
/
webpack.common.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
const { HTMLWebpackPlugins, entry } = require('./.build/genEntries.js')
const path = require('path')
module.exports = {
entry: entry,
output: {
chunkFilename: 'js/[name]_[contenthash:5].js'
},
resolve: {
extensions: ['.js', '.ts'],
alias: {
'@': path.resolve(__dirname, 'src')
}
},
optimization: {
splitChunks: {
chunks: 'all'
}
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
use: [
'babel-loader',
{
loader: 'eslint-loader',
options: {
fix: true
}
}
]
},
{
test: /\.tsx?$/,
exclude: /node_modules/,
use: [
'babel-loader',
'ts-loader'
]
},
{
test: /\.html$/,
use: {
loader: 'html-loader'
}
},
{
test: /\.art$/,
use: {
loader: 'art-template-loader'
}
},
{
test: /\.(svg|jpe?g|gif|png|bmp)$/,
use: {
loader: 'url-loader',
options: {
name: '[name]_[hash:5].[ext]',
outputPath: 'images',
limit: 2048
}
}
},
{
test: /\.(eot|ttf|woff2?|otf)$/,
use: {
loader: 'file-loader',
options: {
name: '[name]_[hash:5].[ext]',
outputPath: 'fonts'
}
}
}
]
},
plugins: [
...HTMLWebpackPlugins
]
}