forked from webpack/webpack.js.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.prod.js
113 lines (109 loc) · 3.62 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
106
107
108
109
110
111
112
113
// Import External Dependencies
const path = require('path');
const webpack = require('webpack');
const merge = require('webpack-merge');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const SSGPlugin = require('static-site-generator-webpack-plugin');
const RedirectWebpackPlugin = require('redirect-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const flattenContentTree = require('./src/utilities/flatten-content-tree');
const contentTree = require('./src/_content.json');
// Load Common Configuration
const common = require('./webpack.common.js');
// content tree to path array
const paths = [
...flattenContentTree(contentTree),
'/vote',
'/organization',
'/starter-kits'
];
// Prod only config
const prod = {
plugins: [
new UglifyJSPlugin({
parallel: true,
exclude: /^(server)/
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')
}),
new CopyWebpackPlugin([
{
from: './assets/icon-square-small-slack.png',
to: './assets/'
},
{
from: './assets/icon-square-big.svg',
to: './assets/'
},
'CNAME'
])
]
};
// Export both SSG and SPA configurations
module.exports = env => [
merge(common(env), prod, {
target: 'node',
entry: {
index: './server.jsx'
},
plugins: [
new SSGPlugin({
globals: {
window: {}
},
paths,
locals: {
content: contentTree
}
}),
new RedirectWebpackPlugin({
redirects: {
'support': '/contribute/',
'writers-guide': '/contribute/writers-guide/',
'get-started': '/guides/getting-started/',
'get-started/install-webpack': '/guides/installation/',
'get-started/why-webpack': '/guides/why-webpack/',
'pluginsapi': '/api/plugins/',
'pluginsapi/compiler': '/api/compiler-hooks/',
'pluginsapi/template': '/api/template/',
'api/passing-a-config': '/configuration/configuration-types/',
'api/plugins/compiler': '/api/compiler-hooks/',
'api/plugins/compilation': '/api/compilation/',
'api/plugins/module-factories': '/api/module-methods/',
'api/plugins/parser': '/api/parser/',
'api/plugins/tapable': '/api/tapable/',
'api/plugins/template': '/api/template/',
'api/plugins/resolver': '/api/resolver/',
'development': '/contribute/',
'development/plugin-patterns': '/contribute/plugin-patterns/',
'development/release-process': '/contribute/release-process/',
'development/how-to-write-a-loader': '/contribute/writing-a-loader/',
'development/how-to-write-a-plugin': '/contribute/writing-a-plugin/',
'guides/code-splitting-import': '/guides/code-splitting/',
'guides/code-splitting-require': '/guides/code-splitting/',
'guides/code-splitting-async': '/guides/code-splitting/',
'guides/code-splitting-css': '/guides/code-splitting/',
'guides/code-splitting-libraries': '/guides/code-splitting/',
'guides/why-webpack': '/comparison/',
'guides/production-build': '/guides/production/',
'migrating': '/migrate/3/',
'plugins/no-emit-on-errors-plugin': '/configuration/optimization/#optimization-noemitonerrors'
}
})
],
output: {
filename: 'server.[name].js',
libraryTarget: 'umd'
}
}),
merge(common(env), prod, {
target: 'web',
plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
chunks: ['index']
})
]
})
];