-
Notifications
You must be signed in to change notification settings - Fork 9
/
webpack.config.js
69 lines (62 loc) · 1.45 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
const path = require('path');
const HtmlBundlerPlugin = require('html-bundler-webpack-plugin');
const isProd = !process.argv.find((str) => str.includes('development'));
module.exports = {
mode: isProd ? 'production' : 'development',
devtool: isProd ? 'source-map' : 'inline-source-map',
stats: 'minimal',
output: {
path: path.join(__dirname, 'dist'),
},
plugins: [
new HtmlBundlerPlugin({
entry: {
// define templates here
index: 'src/index.html', // => dist/index.html
},
js: {
// JS output filename
filename: 'js/[name].[contenthash:8].js',
},
css: {
// CSS output filename
filename: 'css/[name].[contenthash:8].css',
},
// generate preload tags for heavy assets
preload: [
{
test: /\.(png|jpe?g|webp|svg)$/,
as: 'image',
},
],
}),
],
module: {
rules: [
{
test: /\.(css|sass|scss)$/,
use: ['css-loader', 'sass-loader'],
},
{
test: /[\\/]images[\\/].+(png|jpe?g|svg|webp|ico)$/,
type: 'asset/resource',
generator: {
filename: 'img/[name].[hash:8][ext]',
},
},
],
},
performance: {
// don't show the size limit warning
hints: false,
},
devServer: {
static: path.join(__dirname, './dist'),
watchFiles: {
paths: ['src/**/*.*'],
options: {
usePolling: true,
},
},
},
};