-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
85 lines (85 loc) · 2.57 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
/* eslint-disable no-undef */
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const LwcWebpackPlugin = require('lwc-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const siteConfig = require('./config/blog.js');
module.exports = {
entry: {
index: './src/index.js',
about: './src/pages/about/about.js',
layout_post: './src/11ty-layouts/post/post.js'
},
output: {
path: path.resolve(__dirname, './build'),
filename: '[name].bundle.js',
publicPath: siteConfig.publicPath
},
plugins: [
new CleanWebpackPlugin(),
new LwcWebpackPlugin(),
new HtmlWebpackPlugin({
template: 'src/index.html',
chunks: ['index'],
filename: './index.njk',
minify: false
}),
new HtmlWebpackPlugin({
template: './src/pages/about/about.html',
chunks: ['about'],
filename: 'about/index.njk'
}),
new HtmlWebpackPlugin({
template: './src/11ty-layouts/post/post.html',
chunks: ['layout_post'],
filename: '_includes/layout-post.njk'
}),
new CopyPlugin({
patterns: [
{ from: 'src/resources/', to: 'resources/' },
{ from: 'src/admin/', to: 'admin/' },
{ from: 'src/posts/', to: 'posts/' }
]
})
],
module: {
rules: [
{
test: /\.m?js$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
}
]
},
{
test: /\.css$/i,
exclude: path.resolve(__dirname, './src/modules/'),
use: ['style-loader', 'css-loader', 'postcss-loader']
}
]
},
optimization: {
splitChunks: {
cacheGroups: {
lwc: {
test: /[\\/]node_modules[\\/]@lwc[\\/]engine/,
chunks: 'all',
priority: 1
},
node_vendors: {
test: /[\\/]node_modules[\\/]/,
chunks: 'all',
priority: -10
}
},
name: false
}
},
stats: 'errors-only'
};