Publish an add-in developed with Visual Studio Code

This article describes how to publish an Office Add-in that you created using the Yeoman generator and developed with Visual Studio Code (VS Code) or any other editor.

Note

Publishing an add-in for other users to access

An Office Add-in consists of a web application and a manifest file. The web application defines the add-in's user interface and functionality, while the manifest specifies the location of the web application and defines settings and capabilities of the add-in.

While you're developing, you can run the add-in on your local web server (localhost). When you're ready to publish it for other users to access, you'll need to deploy the web application and update the manifest to specify the URL of the deployed application.

When your add-in is working as desired, you can publish it directly through Visual Studio Code using the Azure Storage extension.

Using Visual Studio Code to publish

Note

These steps only work for projects created with the Yeoman generator, and that use the XML-formatted manifest. They do not apply if you created the add-in using the Teams Toolkit or created it with the Yeoman generator and it uses the unified manifest for Microsoft 365.

  1. Open your project from its root folder in Visual Studio Code (VS Code).

  2. Select View > Extensions (Ctrl+Shift+X) to open the Extensions view.

  3. Search for the Azure Storage extension and install it.

  4. Once installed, an Azure icon is added to the Activity Bar. Select it to access the extension. If the Activity Bar is hidden, open it by selecting View > Appearance > Activity Bar.

  5. Select Sign in to Azure to sign in to your Azure account. If you don't already have an Azure account, create one by selecting Create an Azure Account. Follow the provided steps to set up your account.

    Sign in to Azure button selected in the Azure extension.

  6. Once you're signed in, you'll see your Azure storage accounts appear in the extension. If you don't already have a storage account, create one using the Create Storage Account option in the command palette. Name your storage account a globally unique name, using only 'a-z' and '0-9'. Note that by default, this creates a storage account and a resource group with the same name. It automatically puts the storage account in West US. This can be adjusted online through your Azure account.

    Selecting Storage accounts > Create Storage Account in the Azure extension.

  7. Right-click your storage account and select Configure Static Website. You'll be asked to enter the index document name and the 404 document name. Change the index document name from the default index.html to taskpane.html. You may also change the 404 document name but are not required to.

  8. Right-click your storage account again and this time select Browse Static Website. From the browser window that opens, copy the website URL.

  9. Open your project's manifest file (manifest.xml) and change all references to your localhost URL (such as https://localhost:3000) to the URL you've copied. This endpoint is the static website URL for your newly created storage account. Save the changes to your manifest file.

  10. Open a command line prompt or terminal window and go to the root directory of your add-in project. Run the following command to prepare all files for production deployment.

    npm run build
    

    When the build completes, the dist folder in the root directory of your add-in project will contain the files that you'll deploy in subsequent steps.

  11. In VS Code, go to the Explorer and Right-click the dist folder, and select Deploy to Static Website via Azure Storage. When prompted, select the storage account you created previously.

    Select the dist folder, right-click, and select Deploy to Static Website via Azure Storage.

  12. When deployment is complete, right-click the storage account that you created previously and select Browse Static Website. This opens the static web site and displays the task pane.

  13. Finally, sideload the manifest file and the add-in will load from the static web site you just deployed.

Deploy custom functions for Excel

If your add-in has custom functions, there are a few more steps to enable them on the Azure Storage account. First, enable CORS so that Office can access the functions.json file.

  1. Right-click the Azure storage account and select Open in Portal.

  2. In the Settings group, select Resource sharing (CORS). You can also use the search box to find this.

  3. Create a new CORS rule with the following settings.

    Property Value
    Allowed origins *
    Allowed methods GET
    Allowed headers *
    Exposed headers Access-Control-Allow-Origin
    Max age 200
  4. Select Save.

Caution

This CORS configuration assumes all files on your server are publicly available to all domains.

Next, add a MIME type for JSON files.

  1. Create a new file in the /src folder named web.config.

  2. Insert the following XML and save the file.

    <?xml version="1.0"?>
    <configuration>
      <system.webServer>
        <staticContent>
          <mimeMap fileExtension=".json" mimeType="application/json" />
        </staticContent>
      </system.webServer>
    </configuration> 
    
  3. Open the webpack.config.js file.

  4. Add the following code in the list of plugins to copy the web.config into the bundle when the build runs.

    new CopyWebpackPlugin({
      patterns: [
      {
        from: "src/web.config",
        to: "src/web.config",
      },
     ],
    }),
    
  5. Open a command line prompt and go to the root directory of your add-in project. Then, run the following command to prepare all files for deployment.

    npm run build
    

    When the build completes, the dist folder in the root directory of your add-in project will contain the files that you'll deploy.

  6. To deploy, in the VS Code Explorer, Right-click the dist folder, and select Deploy to Static Website via Azure Storage. When prompted, select the storage account you created previously. If you already deployed the dist folder, you'll be prompted if you want to overwrite the files in the Azure storage with the latest changes.

Deploy updates

When you add features or fix bugs in your add-in, you'll need to deploy the updates. If your add-in is deployed by one or more admins to their organizations, some manifest changes will require the admin to consent to the updates. Users will be blocked from the add-in until consent is granted. The following manifest changes will require the admin to consent again.

Note

Whenever you make a change to the manifest, you must raise the version number of the manifest.

See also