-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
58 lines (57 loc) · 1.99 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
const path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = (env, argv) => ({
entry: ['./src/index.js'],
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].bundle.js',
publicPath: ''
},
module: {
rules: [
{
test: /\.s[ac]ss$/i,
use: [
argv.mode === 'production' ? MiniCssExtractPlugin.loader : 'style-loader',
'css-loader',
'sass-loader',
],
},
{
test: /fa-.*\.(ico|png|jpg|jpeg|gif|svg|eot|otf|webp|ttf|woff|woff2)(\?.*)?$/,
use: { loader: 'file-loader', options: { name: '[name].[ext]', outputPath: 'assets/font/fortawesome/' } }
},
{
exclude: [path.resolve(__dirname, 'node_modules/@fortawesome/fontawesome-free/webfonts')],
rules: [
{
test: /\.(eot|otf|webp|ttf|woff|woff2)(\?.*)?$/,
use: { loader: 'file-loader', options: { name: '[name].[ext]', outputPath: 'assets/font/misc/' } }
},
{
test: /\.(ico|png|jpg|jpeg|gif|svg)(\?.*)?$/,
use: { loader: 'file-loader', options: { name: '[name].[ext]', outputPath: 'assets/img/misc/' } }
}
]
},
{
test: /\.js$/,
exclude: /node_modules/,
use: ['babel-loader']
}
]
},
plugins: [
new MiniCssExtractPlugin({
filename: '[name].bundle.css'
}),
new HtmlWebpackPlugin({
filename: 'index.html',
template: path.resolve(__dirname, './src', 'index.html')
})
],
optimization: {
splitChunks: { chunks: 'all' }
}
});