-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
100 lines (95 loc) · 3.27 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
'use strict';
const path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
var RemoveEmptyScriptsPlugin = require('webpack-remove-empty-scripts');
var CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const sgmfScripts = require('sgmf-scripts');
module.exports = [{
mode: 'production',
name: 'js',
entry: sgmfScripts.createJsPath(),
output: {
path: path.resolve('./cartridges/int_cybs_sfra/cartridge/static'),
filename: '[name].js'
},
plugins: [
new CopyPlugin({
patterns: [
{
from: path.resolve('./cartridges/int_cybs_sfra/cartridge/client/default/custom'),
to: path.resolve('./cartridges/int_cybs_sfra/cartridge/static/default/custom')
},
],
})
]
},
{
mode: 'none',
name: 'scss',
entry: sgmfScripts.createScssPath(),
output: {
path: path.resolve('./cartridges/int_cybs_sfra/cartridge/static'),
},
module: {
rules: [
{
test: /\.scss$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
esModule: false
}
},
{
loader: 'css-loader',
options: {
url: false
}
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [require('autoprefixer')()]
}
}
},
{
loader: 'sass-loader',
options: {
implementation: require('sass'),
sassOptions: {
includePaths: [
path.resolve(
process.cwd(),
'../storefront-reference-architecture/node_modules/'
),
path.resolve(
process.cwd(), // eslint-disable-next-line max-len
'../storefront-reference-architecture/node_modules/flag-icon-css/sass'
)]
}
}
}
]
}
]
},
plugins: [
new RemoveEmptyScriptsPlugin(),
new MiniCssExtractPlugin({ filename: '[name].css', chunkFilename: '[name].css' }),
new CopyPlugin({
patterns: [
{
from: path.resolve('./cartridges/int_cybs_sfra/cartridge/client/default/images'),
to: path.resolve('./cartridges/int_cybs_sfra/cartridge/static/default/images')
},
],
})
],
optimization: {
minimizer: ['...', new CssMinimizerPlugin()]
}
}];