Reputation: 329
In Outlook for Mac, an office.js Outlook add-in runs in a task pane that I assume is a Safari web control. I have not been able to determine how you clear the cached files from an add-in running in the task pane.
Does anyone know how to manually clear the task pane's browser cache? I cannot find an official answer, just guesses.
Thanks.
Upvotes: 4
Views: 3779
Reputation: 161
Outlook has changed cache path, the new one is ~/Library/Containers/com.microsoft.Outlook/Data/Library/Caches
Upvotes: 4
Reputation: 13480
Seems like the documentation contains the information you're looking for: Clear the Office cache
For Mac:
Delete the contents of the folder:
~/Library/Containers/com.Microsoft.OsfWebHost/Data/
Upvotes: 3
Reputation: 55
I had a similar issue when building a custom function. My js was being cached and was not reloaded when pushed updated code to my webserver.
To remove the cache on my mac I deleted the contents of the following directory:
~/Library/Containers/com.microsoft.Excel/Data/Library/Caches/
Upvotes: 3