Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 25c49b9

Browse files
committedNov 11, 2021
Fix: make sure .gz files are up to date.
1 parent 13a6c11 commit 25c49b9

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed
 

‎webpack.config.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
const path = require("path");
1010

11-
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
1211
const CopyPlugin = require("copy-webpack-plugin");
1312
const CompressionPlugin = require("compression-webpack-plugin");
13+
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
1414
const HtmlWebpackPlugin = require("html-webpack-plugin");
1515
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
1616

@@ -37,7 +37,7 @@ module.exports = (env, argv) => {
3737
},
3838
{
3939
test: /\.(png|jpe?g|gif|svg|eot|ttf|woff|woff2)$/i,
40-
// For more information, see https://webpack.js.org/guides/asset-modules/.
40+
// For more information, see `Asset Modules <https://webpack.js.org/guides/asset-modules/>`_.
4141
type: "asset",
4242
},
4343
],
@@ -56,24 +56,24 @@ module.exports = (env, argv) => {
5656
},
5757
output: {
5858
path: path.resolve(__dirname, "runestone/dist"),
59-
// See https://webpack.js.org/guides/caching/. This provides a hash for dynamic imports as well, avoiding caching out-of-date JS.
60-
filename: "[name].bundle.js?v=[contenthash]",
61-
// Node 17.0 reports ``Error: error:0308010C:digital envelope routines::unsupported``. Per `SO <https://stackoverflow.com/a/69394785/16038919>`_, this error is produced by using an old, default hash that OpenSSL removed support for. The `webpack docs <https://webpack.js.org/configuration/output/#outputhashfunction>"__ says that ``xxhash64`` is a faster algorithm.
59+
// _`Output file naming`: see the `caching guide <https://webpack.js.org/guides/caching/>`_. This provides a hash for dynamic imports as well, avoiding caching out-of-date JS. Putting the hash in a query parameter (such as ``[name].js?v=[contenthash]``) causes the compression plugin to not update zipped files.
60+
filename: "[name].[contenthash].bundle.js",
61+
// Node 17.0 reports ``Error: error:0308010C:digital envelope routines::unsupported``. Per `SO <https://stackoverflow.com/a/69394785/16038919>`_, this error is produced by using an old, default hash that OpenSSL removed support for. The `webpack docs <https://webpack.js.org/configuration/output/#outputhashfunction>`__ say that ``xxhash64`` is a faster algorithm.
6262
hashFunction: "xxhash64",
6363
// Delete everything in the output directory on each build.
6464
clean: true,
6565
},
66-
// See https://webpack.js.org/guides/code-splitting/#splitchunksplugin.
66+
// See the `SplitChunksPlugin docs <https://webpack.js.org/guides/code-splitting/#splitchunksplugin>`_.
6767
optimization: {
6868
moduleIds: "deterministic",
6969
// Collect all the webpack import runtime into a single file, which is named ``runtime.bundle.js``. This must be statically imported by all pages containing Runestone components.
7070
runtimeChunk: "single",
7171
splitChunks: {
7272
chunks: "all",
7373
},
74-
// CSS for production was copied from https://webpack.js.org/plugins/mini-css-extract-plugin/#minimizing-for-production.
74+
// CSS for production was copied from `Minimizing For Production <https://webpack.js.org/plugins/mini-css-extract-plugin/#minimizing-for-production>`_.
7575
minimizer: [
76-
// For webpack@5 you can use the `...` syntax to extend existing minimizers (i.e. `terser-webpack-plugin`), uncomment the next line.
76+
// For webpack@5 you can use the ``...`` syntax to extend existing minimizers (i.e. ``terser-webpack-plugin``), uncomment the next line.
7777
`...`,
7878
new CssMinimizerPlugin(),
7979
],
@@ -101,7 +101,8 @@ module.exports = (env, argv) => {
101101
],
102102
}),
103103
new MiniCssExtractPlugin({
104-
filename: "[name].css?v=[contenthash]",
104+
// See `output file naming`_.
105+
filename: "[name].[contenthash].css",
105106
chunkFilename: "[id].css",
106107
}),
107108
// Copied from the `webpack docs <https://webpack.js.org/plugins/compression-webpack-plugin>`_. This creates ``.gz`` versions of all files. The webserver in use needs to be configured to send this instead of the uncompressed versions.

0 commit comments

Comments
 (0)
This repository has been archived.