This post was most recently updated on November 17th, 2020.
2 min read.This article explains how to access the Site Collection App Catalog in SharePoint Online. I mean – yeah, I had to google it after getting back to SPFx dev stuff after a while, and realized the first few results were useless.
Of course. So how did you do this now…
Turned out to be pretty easy, and borderline obvious! Still, yet another thing to document.
Solution
Table of Contents
So, back to basics – how do you access the Site Collection App Catalog on a SharePoint Online site?
Time needed: 5 minutes.
How to access the Site Collection App Catalog in SharePoint Online?
- Navigate to your SharePoint Site (or Site Collection, if you’re feeling Classic)
- Access “Site Contents” of said site
Either append “/_layouts/15/viewlsts.aspx” to the url, or navigate using the gear menu like shown below.
- You should see the App Catalog right there
Obvious, right? Yeah – it’s a library. It’s kind of in the name, too!
If you’re just uploading a solution for your local environment, it’s as easy as opening the library, dragging and dropping your package there. - If the Site Collection App Catalog doesn’t exist, create it!
Here’s how to create it using SharePoint Online Management Shell!
Connect-SPOService -Url https://contoso-admin.sharepoint.com
$site = Get-SPOSite https://contoso.sharepoint.com/sites/commssite
Add-SPOSiteCollectionAppCatalog -Site $site
And you should be good!
That was easy! Do you feel as stupid as I did, when I was googling this? 😜 Anyway, now it’s documented.
References
- Microsoft’s documentation on SharePoint App Catalogs:
- How to fix “Missing value for AzureWebJobsStorage in local.settings.json” when you’re debugging Azure Functions locally? - March 3, 2021
- How to copy-paste a table from Excel to WordPress without using plug-ins? - February 24, 2021
- How to create a new SharePoint list based on a List template (.stp)? - February 17, 2021