We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6cda17 commit 4702d9dCopy full SHA for 4702d9d
src/properties/output/index.js
@@ -10,6 +10,7 @@ export default Joi.object({
10
devtoolModuleFilenameTemplate: [notAbsolutePath, Joi.func()],
11
devtoolFallbackModuleFilenameTemplate: [notAbsolutePath, Joi.func()],
12
devtoolLineToLine: Joi.any(),
13
+ hashDigestLength: Joi.number(),
14
hotUpdateChunkFilename: notAbsolutePath,
15
hotUpdateMainFilename: notAbsolutePath,
16
jsonpFunction: Joi.string(),
src/properties/output/index.test.js
@@ -37,6 +37,8 @@ const validModuleConfigs = [
37
{ crossOriginLoading: false },
38
// #16
39
{ crossOriginLoading: 'anonymous' },
40
+ // #17
41
+ { hashDigestLength: 6 }, // undocumented
42
43
]
44
0 commit comments