We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd3015e commit b168aa7Copy full SHA for b168aa7
src/config/load.ts
@@ -32,7 +32,7 @@ export default function load() {
32
33
config.port = config.port || parseInt(process.env.PORT || '', 10);
34
35
- config.proxyRemoteFiles = !config.proxyRemoteFiles === false;
+ config.proxyRemoteFiles = typeof config.proxyRemoteFiles === 'boolean' ? config.proxyRemoteFiles : true;
36
37
const icons = {
38
favicon: {
0 commit comments