I have a javascript add-in developed for Word which I now wish to deploy for other users to download and install on their Mac/Windows Word. All the instructions I can find for this indicate that it is possible to deploy on a non-azure etc. web server. I've modified manifest.xml so that all previous references to localhost:3000 now point to the download site. e.g. "https://localhost:3000/taskpane.html" becomes: "https://example.com/office/word/taskpane.html"
I've run npm run build with the new manifest.xml and the dist folder is populated – these files I FTP to: https://example.com/office/word/
Assuming all has gone well with the above and I have not missed anything out, I now have the issue of how to import that add-in into Word (not side-loaded but from https://example.com/office/word/).
I'm using Word for Mac v.16.46. In the Insert ribbon, neither of the two buttons managing add-ins presents any way to input https://example.com/office/word/ or similar.
Any ideas how I (and my users) import the add-in into Word (MacOS/Windows)?