-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathwebpack.config.js
More file actions
86 lines (83 loc) · 2.42 KB
/
Copy pathwebpack.config.js
File metadata and controls
86 lines (83 loc) · 2.42 KB
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
86
const path = require('path');
const autoprefixer = require('autoprefixer');
const terserWebpackPlugin = require('terser-webpack-plugin');
module.exports = {
mode: 'production',
entry: {
"bundle": [
'./src/assets/scripts/scripts.js',
]
},
module: {
rules: [
{
test: /\.scss$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].css',
},
},
{
loader: 'extract-loader'
},
{
loader: 'css-loader'
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [
autoprefixer()
]
}
}
},
{
loader: 'sass-loader',
options: {
// Prefer Dart Sass
implementation: require('sass'),
// See https://github.com/webpack-contrib/sass-loader/issues/804
webpackImporter: false,
sassOptions: {
includePaths: ['./node_modules']
},
},
},
]
},
{
test: /\.js$/,
exclude: /node_modules/,
use: ["babel-loader"]
},
],
},
optimization: {
minimize: true,
minimizer: [
new terserWebpackPlugin({
extractComments: false,
terserOptions: {
mangle: true,
compress: true,
format: {
comments: false,
},
},
})
],
// splitChunks: {
// chunks: 'all',
// },
},
output: {
clean: false,
path: path.resolve(__dirname, './dist/scripts'),
filename: '[name].js'
},
watch: true
}