-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathwebpack.prod.js
105 lines (103 loc) · 2.89 KB
/
webpack.prod.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
101
102
103
104
105
const common = require('./webpack.common');
const codeProdConfig = require('./code/configs/webpack/webpack.prod');
const merge = require('webpack-merge');
const DotenvWebpack = require('dotenv-webpack');
const CleanWebpackPlugin = require('clean-webpack-plugin/dist/clean-webpack-plugin');
const ExtractCssChunksWithPageDirection = require("extract-css-chunks-webpack-plugin-with-page-direction");
const RtlCssPlugin = require('rtl-css-transform-webpack-plugin');
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
const ReactLoadableSSRAddon = require('react-loadable-ssr-addon');
const isProduction = process.env.NODE_ENV === 'production';
const dotenvPath = isProduction ? './.env' : './.env.development';
const ASSETS_PATH = process.env.ASSETS_PATH || 'assets'
const config = {
mode: process.env.NODE_ENV,
plugins: [
new CleanWebpackPlugin(),
new DotenvWebpack({
path: dotenvPath
}),
new ExtractCssChunksWithPageDirection({
filename: `${ASSETS_PATH}/[name]-[pagedir].[hash].css`,
chunkFilename: `${ASSETS_PATH}/[name]-[pagedir].[hash].css`
}),
new OptimizeCSSAssetsPlugin({}),
new ReactLoadableSSRAddon({
filename: 'react-loadable.json'
}),
new RtlCssPlugin({
filename: `${ASSETS_PATH}/[name]-rtl.[hash].css`
})
],
optimization: {
splitChunks: {
chunks: 'all',
automaticNameDelimiter: '-',
cacheGroups: {
default: {
minChunks: 2
},
vendors: {
test: /[\\/]node_modules[\\/](react|react-dom)[\\/]/,
filename: `${ASSETS_PATH}/vendor.[contentHash].js`
}
}
}
},
module: {
rules: [
{
test: /\.(js|ts)x?$/,
exclude: /node_modules/,
use: ['prettier-loader']
},
{
test: /\.(le|c)ss$/,
use: [
// extract css
{
loader: ExtractCssChunksWithPageDirection.loader
},
// css-loader
{
loader: 'css-loader',
options: {
sourceMap: true,
modules: true,
camelCase: true,
localIdentName: '[name]__[local]__[hash:base64:5]'
}
},
// less-loader
{
loader: 'less-loader'
}
]
},
{
test: /\.(sa|sc|c)ss$/,
use: [
// extract css
{
loader: ExtractCssChunksWithPageDirection.loader
},
// css-loader
{
loader: 'css-loader',
options: {
sourceMap: true,
modules: true,
camelCase: true,
localIdentName: '[name]__[local]__[hash:base64:5]'
}
},
// sass-loader
{
loader: 'sass-loader'
}
]
}
]
}
};
module.exports = merge.smart(common, config, codeProdConfig);