fix(app): remove unused func
All checks were successful
Deploy to GitHub Pages / build_site (push) Successful in 2m7s
All checks were successful
Deploy to GitHub Pages / build_site (push) Successful in 2m7s
This commit is contained in:
@@ -43,13 +43,17 @@
|
|||||||
);
|
);
|
||||||
|
|
||||||
$effect(() => {
|
$effect(() => {
|
||||||
|
workerRuntime.useRegistryCache =
|
||||||
|
appSettings.value.debug.cache.useRuntimeCache;
|
||||||
|
workerRuntime.useRuntimeCache =
|
||||||
|
appSettings.value.debug.cache.useRegistryCache;
|
||||||
|
|
||||||
if (appSettings.value.debug.cache.useRegistryCache) {
|
if (appSettings.value.debug.cache.useRegistryCache) {
|
||||||
nodeRegistry.cache = registryCache;
|
nodeRegistry.cache = registryCache;
|
||||||
} else {
|
} else {
|
||||||
nodeRegistry.cache = undefined;
|
nodeRegistry.cache = undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
workerRuntime.setUseCache(appSettings.value.debug.cache.useRuntimeCache);
|
|
||||||
if (appSettings.value.debug.cache.useRuntimeCache) {
|
if (appSettings.value.debug.cache.useRuntimeCache) {
|
||||||
memoryRuntime.cache = runtimeCache;
|
memoryRuntime.cache = runtimeCache;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user