Skip to content

Commit 4e1b65b

Browse files
authored
optimize(hooks): remove obsolete disabling cache. (#729)
1 parent 3cbaf4f commit 4e1b65b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/plugins/iconify.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
import { addAPIProvider, disableCache } from '@iconify/vue';
1+
import { addAPIProvider } from '@iconify/vue';
22

33
/** Setup the iconify offline */
44
export function setupIconifyOffline() {
55
const { VITE_ICONIFY_URL } = import.meta.env;
66

77
if (VITE_ICONIFY_URL) {
88
addAPIProvider('', { resources: [VITE_ICONIFY_URL] });
9-
10-
disableCache('all');
119
}
1210
}

0 commit comments

Comments
 (0)