Major dependency updates

pull/462/head
MattIPv4 2024-01-22 17:01:34 +00:00
parent 6cc9c683ff
commit 0634d6d221
4 changed files with 1291 additions and 1045 deletions

2315
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -84,14 +84,14 @@
"husky": "^8.0.3", "husky": "^8.0.3",
"jest": "^29.7.0", "jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0", "jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.3.0", "lint-staged": "^15.2.0",
"node-fetch": "^3.3.2", "node-fetch": "^3.3.2",
"postcss": "^8.4.33", "postcss": "^8.4.33",
"prettier": "3.2.4", "prettier": "3.2.4",
"sass": "^1.70.0", "sass": "^1.70.0",
"sass-loader": "^13.3.3", "sass-loader": "^14.0.0",
"stylelint": "^15.11.0", "stylelint": "^16.2.0",
"stylelint-config-standard-scss": "^10.0.0", "stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4", "stylelint-order": "^6.0.4",
"vue-template-compiler": "^2.7.16", "vue-template-compiler": "^2.7.16",
"webpack": "^5.89.0", "webpack": "^5.89.0",

View File

@ -303,8 +303,8 @@ export default (domain, domains, global, ipPortPairs) => {
domain.routing.fallbackHtml.computed domain.routing.fallbackHtml.computed
? 'html' ? 'html'
: domain.routing.fallbackPhp.computed : domain.routing.fallbackPhp.computed
? 'php' ? 'php'
: '' : ''
} fallback`, } fallback`,
'', '',
]); ]);
@ -315,8 +315,8 @@ export default (domain, domains, global, ipPortPairs) => {
domain.routing.fallbackHtml.computed domain.routing.fallbackHtml.computed
? 'html' ? 'html'
: domain.routing.fallbackPhp.computed : domain.routing.fallbackPhp.computed
? 'php?$query_string' ? 'php?$query_string'
: '' : ''
}`, }`,
}, },
]); ]);

View File

@ -113,9 +113,8 @@ export default (domains, global) => {
domains.map((domain, index) => [domain, index]).filter((d) => d[0] !== null), domains.map((domain, index) => [domain, index]).filter((d) => d[0] !== null),
global, global,
); );
files[ files['nginxconfig.txt'] =
'nginxconfig.txt' `${window.location.protocol}//${window.location.host}${window.location.pathname}${query}`;
] = `${window.location.protocol}//${window.location.host}${window.location.pathname}${query}`;
return files; return files;
}; };