@redhat-cloud-services/frontend-components-config 4.6.11 → 4.6.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/config.js +3 -0
- package/src/config.test.js +1 -0
package/package.json
CHANGED
package/src/config.js
CHANGED
|
@@ -38,6 +38,7 @@ module.exports = ({
|
|
|
38
38
|
useChromeTemplate = true,
|
|
39
39
|
bounceProd,
|
|
40
40
|
useAgent,
|
|
41
|
+
useDevBuild = true,
|
|
41
42
|
} = {}) => {
|
|
42
43
|
const filenameMask = `js/[name]${useFileHash ? `.${Date.now()}.[fullhash]` : ''}.js`;
|
|
43
44
|
if (betaEnv) {
|
|
@@ -171,6 +172,7 @@ module.exports = ({
|
|
|
171
172
|
{ from: /^(\/beta)?\/config/, to: '/404.html' },
|
|
172
173
|
],
|
|
173
174
|
verbose: Boolean(proxyVerbose),
|
|
175
|
+
disableDotRule: true,
|
|
174
176
|
},
|
|
175
177
|
devMiddleware: {
|
|
176
178
|
writeToDisk: true,
|
|
@@ -201,6 +203,7 @@ module.exports = ({
|
|
|
201
203
|
},
|
|
202
204
|
bounceProd,
|
|
203
205
|
useAgent,
|
|
206
|
+
useDevBuild,
|
|
204
207
|
}),
|
|
205
208
|
},
|
|
206
209
|
};
|