This repository has been archived by the owner on Sep 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
75 lines (74 loc) · 2.02 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
const path = require('path');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const StyleExtHtmlWebpackPlugin = require('style-ext-html-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const HtmlWebpackExcludeAssetsPlugin = require('html-webpack-exclude-assets-plugin');
const IgnoreAssetsWebpackPlugin = require('ignore-assets-webpack-plugin');
module.exports = {
entry: {
styles: [
'./src/scss/main.scss'
]
},
output: {
path: path.resolve(__dirname, 'dist')
},
plugins: [
new CleanWebpackPlugin(),
new CopyPlugin([
{ from: 'config.json', to: 'config.json' },
]),
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: '[name].css',
chunkFilename: 'styles.css',
}),
new HtmlWebpackPlugin({
filename: 'head.html',
template: 'src/head.html',
chunks: ['styles'],
excludeAssets: [/styles.*.js/]
}),
new HtmlWebpackPlugin({
filename: 'footer.html',
template: 'src/footer.html',
chunks: []
}),
new HtmlWebpackPlugin({
filename: 'header.html',
template: 'src/header.html',
chunks: []
}),
new StyleExtHtmlWebpackPlugin({
chunks: ['styles'],
position: 'plugin'
}),
new HtmlWebpackExcludeAssetsPlugin(),
new IgnoreAssetsWebpackPlugin({
ignore: 'styles.js'
})
],
module: {
rules: [
{
test: /\.scss$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
// you can specify a publicPath here
// by default it uses publicPath in webpackOptions.output
// publicPath: '../',
hmr: process.env.NODE_ENV === 'development',
},
},
'css-loader',
'sass-loader'
],
}
]
}
};