From 3e4cb324967b0808ed04e189e887c44252a250ac Mon Sep 17 00:00:00 2001 From: Henrik Askjer <henrik.askjer@uib.no> Date: Tue, 28 Sep 2021 15:44:28 +0200 Subject: [PATCH] Prevent article caching --- src/components/DictionaryView.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/DictionaryView.vue b/src/components/DictionaryView.vue index 1cc4c326..3cf90a03 100644 --- a/src/components/DictionaryView.vue +++ b/src/components/DictionaryView.vue @@ -80,7 +80,8 @@ const oda_api = setup({ cache: { maxAge: 15 * 60 * 1000, exclude: { - query: false + query: false, + paths: ["articles"] } } }) -- GitLab