-
Notifications
You must be signed in to change notification settings - Fork 36
/
webpack.conf.js
73 lines (69 loc) · 1.52 KB
/
webpack.conf.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
import webpack from 'webpack'
import path from 'path'
import { fileURLToPath } from 'url'
const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
export default {
module: {
rules: [
{
test: /\.(png|jpe?g|gif|webp|svg)(\?.*)?$/,
type: 'asset',
parser: {
dataUrlCondition: {
maxSize: 10000
}
},
generator: {
filename: 'static/img/[name].[contenthash:7][ext]'
}
},
{
test: /\.(s*)css$/,
use: ['css-loader', 'sass-loader']
},
{
test: /\.(woff|woff2|ttf)$/,
type: 'asset/resource',
generator: {
filename: '[name].[contenthash:7][ext]'
}
},
{
test: /\.(eot|svg|gif)$/,
type: 'asset/resource',
generator: {
filename: '[name].[contenthash:7][ext]'
}
},
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
cacheDirectory: true
}
}
}
]
},
plugins: [
new webpack.ProvidePlugin({
fetch: ['whatwg-fetch', 'fetch']
})
],
context: path.join(__dirname, 'src'),
entry: {
index: ['./js/index'],
docs: ['./js/docs'],
learn: ['./js/learn'],
cliCopyButton: ['./js/cliCopyButton']
},
output: {
path: path.join(__dirname, 'public/js'),
publicPath: '/',
filename: '[name].js'
},
externals: [/^vendor\/.+\.js$/]
}