|
1 | 1 | ---
|
2 |
| -title: SharePoint Framework development with SharePoint Server 2019 & SharePoint Server SE |
| 2 | +title: SharePoint Framework development with SharePoint Server 2019 and Subscription Edition |
3 | 3 | description: SharePoint Server 2019 & Subscription Edition (SE) supports SharePoint Framework client-side web parts in classic and modern pages, and extensions in modern pages.
|
4 |
| -ms.date: 03/14/2023 |
| 4 | +ms.date: 03/22/2023 |
5 | 5 | ms.localizationpriority: high
|
6 | 6 | ---
|
7 | 7 |
|
8 |
| -# SharePoint Framework development with SharePoint Server 2019 & SharePoint Server SE |
| 8 | +# SharePoint Framework development with SharePoint Server 2019 and Subscription Edition |
9 | 9 |
|
10 | 10 | SharePoint Server 2019 and Subscription Edition support SharePoint Framework client-side web parts in classic and modern pages, and extensions in modern pages.
|
11 | 11 |
|
@@ -72,67 +72,11 @@ For more information, see [SharePoint Framework development tools and librarie
|
72 | 72 |
|
73 | 73 | To create a new web part with SharePoint Framework , see [Build your first SharePoint client-side web part](web-parts/get-started/build-a-hello-world-web-part.md).
|
74 | 74 |
|
75 |
| -To deploy your web part to SharePoint on-premises, unlike deploying to SharePoint Online, some dependent service applications and specific configurations on the SharePoint Server are required, seeing below tutorials. You can contact SharePoint Server administrator if you do not have appropriate permission to check or configure. |
| 75 | +To deploy your web part to SharePoint on-premises, unlike deploying to SharePoint Online, some dependent service applications and specific configurations on the SharePoint Server are required. You can contact SharePoint Server administrator if you do not have appropriate permission to check or configure. |
76 | 76 |
|
77 |
| -### Create service applications |
78 |
| - |
79 |
| -Ensure the following service applications are enabled on the SharePoint Server: |
80 |
| - |
81 |
| -- App Management Service |
82 |
| -- Microsoft SharePoint Foundation Subscription Settings Service |
83 |
| -- Managed Metadata Web Service |
84 |
| - |
85 |
| -In Central Admin site, you can create App Management Service application and Managed Metadata Web Service application by selecting **Application Management --> Manage service applications**. |
86 |
| - |
87 |
| -:::image type="content" source="../images/manage-service-application.png" alt-text="This is manage service application image."::: |
88 |
| - |
89 |
| -To create SharePoint Foundation Subscription Settings Service, use the following PowerShell command: |
90 |
| - |
91 |
| -```powershell |
92 |
| -$sa = New-SPSubscriptionSettingsServiceApplication -ApplicationPool $applicationPoolName -Name $serviceApplicationName -DatabaseName $dataBaseName |
93 |
| -
|
94 |
| -New-SPSubscriptionSettingsServiceApplicationProxy -ServiceApplication $sa |
95 |
| -``` |
96 |
| - |
97 |
| -### Prepare .sppkg package |
98 |
| - |
99 |
| -1. Bundle the solution, |
100 |
| - `gulp bundle --ship` |
101 |
| - |
102 |
| -1. Package the solution, |
103 |
| - `gulp package-solution --ship` |
104 |
| - |
105 |
| - Verify SharePoint Framework web part on local SharePoint workbench. |
106 |
| - |
107 |
| -### Create and configure App Catalog site |
108 |
| - |
109 |
| -To create and configure App Catalog site, follow these steps: |
110 |
| - |
111 |
| -1. From the **Central Administration** site, go to **Apps** and then select **Manage App Catalog**. |
112 |
| - |
113 |
| - Create a local admin for subsequence use of as the site collection administrator. |
114 |
| - |
115 |
| - :::image type="content" source="../images/manage-app-catalog.png" alt-text="This is manage app catalog image."::: |
116 |
| - |
117 |
| -1. Create the app catalog site by selecting **Web Application**. |
118 |
| -1. Select **Create a new app catalog site**, and then select **OK**. |
119 |
| -1. On the **Create App Catalog** page, enter site information. |
120 |
| - |
121 |
| - > [!NOTE] |
122 |
| - > You need to use the above created local admin account as site collection administrator. |
123 |
| - > Ensure using no system account as site admin. |
124 |
| -
|
125 |
| -To configure App URLs, follow these steps: |
126 |
| - |
127 |
| -1. From the **Central Administration** site, go to **Apps** and then select **Configure App URLs**. |
128 |
| - |
129 |
| - :::image type="content" source="../images/configure-app-urls.png" alt-text="This is configure app urls image."::: |
130 |
| - |
131 |
| -1. Configure the App ___domain and App prefix. |
132 |
| - |
133 |
| -### Upload, install and add to site and page |
134 |
| - |
135 |
| -For more tutorials about uploading the package to App Catalog and adding the web part to modern page, see [Deploy your client-side web part to a SharePoint page](web-parts/get-started/serve-your-web-part-in-a-sharepoint-page.md). |
| 77 | +1. Ensure App Management Service and other dependent service applications are configured, see [Configure an environment for apps for SharePoint Server](https://learn.microsoft.com/sharepoint/administration/configure-an-environment-for-apps-for-sharepoint). |
| 78 | +1. Create and configure App Catalog site, see [Manage the App Catalog in SharePoint Server](https://learn.microsoft.com/sharepoint/administration/manage-the-app-catalog). |
| 79 | +1. Package and upload your web part, install it on your site, and add it to modern page, see [Deploy your client-side web part to a SharePoint page](web-parts/get-started/serve-your-web-part-in-a-sharepoint-page.md). |
136 | 80 |
|
137 | 81 | ## Determine which version was used for a solution
|
138 | 82 |
|
|
0 commit comments