forked from webpack/webpack.js.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.ssg.mjs
More file actions
159 lines (155 loc) · 5.52 KB
/
webpack.ssg.mjs
File metadata and controls
159 lines (155 loc) · 5.52 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// Import External Dependencies
import fs from "node:fs";
import path from "node:path";
import CopyWebpackPlugin from "copy-webpack-plugin";
import CssMinimizerPlugin from "css-minimizer-webpack-plugin";
import RedirectWebpackPlugin from "redirect-webpack-plugin";
import SSGPlugin from "static-site-generator-webpack-plugin";
import { merge } from "webpack-merge";
import WebpackPwaManifest from "webpack-pwa-manifest";
import flattenContentTree from "./src/utilities/flatten-content-tree.mjs";
// Load Common Configuration
import common from "./webpack.common.mjs";
const contentTree = JSON.parse(fs.readFileSync("./src/_content.json", "utf8"));
// content tree to path array
const paths = [...flattenContentTree(contentTree), "/app-shell"];
export default (env) =>
merge(common(env), {
name: "ssg",
mode: "production",
target: "node",
module: {
parser: {
javascript: {
url: "relative",
},
},
},
entry: {
index: "./server.jsx",
},
output: {
filename: ".server/[name].[contenthash].js",
libraryTarget: "umd",
},
optimization: {
minimizer: [
new CssMinimizerPlugin({
minify: CssMinimizerPlugin.lightningCssMinify,
}),
],
},
plugins: [
new SSGPlugin({
globals: {
window: {
__ssgrun: true,
},
},
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/scaffolding": "/api/cli/#init",
"guides/production-build": "/guides/production/",
migrating: "/migrate/3/",
"plugins/no-emit-on-errors-plugin":
"/configuration/optimization/#optimizationemitonerrors",
"concepts/mode": "/configuration/mode",
"contribute/writing-a-scaffold": "/api/cli/#init",
"loaders/raw-loader": "https://v4.webpack.js.org/loaders/raw-loader",
"loaders/url-loader": "https://v4.webpack.js.org/loaders/url-loader",
"loaders/file-loader":
"https://v4.webpack.js.org/loaders/file-loader",
"loaders/null-loader":
"https://v4.webpack.js.org/loaders/null-loader/",
"loaders/mocha-loader":
"https://v4.webpack.js.org/loaders/mocha-loader/",
"loaders/istanbul-instrumenter-loader":
"https://v4.webpack.js.org/loaders/istanbul-instrumenter-loader/",
"loaders/worker-loader/":
"https://v4.webpack.js.org/loaders/worker-loader/",
},
}),
new CopyWebpackPlugin({
patterns: [
{
from: "./assets/icon-square-small-slack.png",
to: "./assets/",
},
{
from: "./assets/icon-square-big.svg",
to: "./assets/",
},
{
from: "./assets/supporters-*.png",
to: "./",
},
{
from: "./assets/robots.txt",
to: "./",
},
"CNAME",
],
}),
new WebpackPwaManifest({
name: "webpack Documentation",
// eslint-disable-next-line camelcase
short_name: "webpack",
description: "webpack documentation web application",
// eslint-disable-next-line camelcase
background_color: "#2b3a42",
// eslint-disable-next-line camelcase
theme_color: "#2b3a42",
display: "minimal-ui",
inject: false,
fingerprints: false,
ios: true,
scope: "/",
// eslint-disable-next-line camelcase
start_url: "/",
orientation: "omit",
icons: [
{
src: path.resolve("src/assets/icon-pwa-512x512.png"),
sizes: [72, 96, 128, 144, 150, 192, 384, 512],
},
{
src: path.resolve("src/assets/icon-pwa-512x512.png"),
sizes: [120, 152, 167, 180],
ios: true,
},
],
}),
],
});