CurtisSlone / SP_Dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Configuring App Environment for on-prem 2019

Manage App Catalog

Manage Catalog

Generating SharePoint Solutions with Yo

Choose SPO,

@microsoft dependencies should be ~1.4.1 in package.json file

"dependencies": { "@microsoft/sp-core-library": "~1.4.1", "@microsoft/sp-webpart-base": "~1.4.1", "@microsoft/sp-lodash-subset": "~1.4.1", "@microsoft/sp-office-ui-fabric-core": "~1.4.1", "@types/webpack-env": ">=1.12.1 <1.14.0" }, "devDependencies": { "@microsoft/sp-build-web": "~1.4.1", "@microsoft/sp-module-interfaces": "~1.4.1", "@microsoft/sp-webpart-workbench": "~1.4.1" }

Create App Service Management proxy for APPs

deploy assets to https://:domain:/_layouts/15

add site collection admin

Use Copy-Item to deploy src files to sharepoint virtual directory

Allow pdf mime type (No STIG Finding)

$wepApp = Get-SPWebApplication("https://site")
$webApp.AllowedInlineDownloadedMimeTypes.Add("application/pdf")
$webApp.Update()

or use Central Admin Panel

About


Languages

Language:TypeScript 75.8%Language:SCSS 19.3%Language:JavaScript 4.9%